
Author: mhenoch Date: Sun Oct 22 08:26:30 2006 New Revision: 59 Modified: cl-darcs/trunk/write-patch.lisp Log: Use write-as-bytes instead of write-sequence in WRITE-PATCH for CHANGE-PREF-PATCH. Modified: cl-darcs/trunk/write-patch.lisp ============================================================================== --- cl-darcs/trunk/write-patch.lisp (original) +++ cl-darcs/trunk/write-patch.lisp Sun Oct 22 08:26:30 2006 @@ -134,9 +134,9 @@ (write-as-bytes "changepref " stream) (write-as-bytes (change-pref-which patch) stream) (write-byte 10 stream) - (write-sequence (change-pref-from patch) stream) + (write-as-bytes (change-pref-from patch) stream) (write-byte 10 stream) - (write-sequence (change-pref-to patch) stream) + (write-as-bytes (change-pref-to patch) stream) (write-byte 10 stream)) (defmethod write-patch ((patch move-patch) stream)