Explorar el Código

stream-read/write-char-sequence fuer clisp

dlichteblau hace 20 años
padre
commit
5156672907
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. 8 0
      mixin.lisp

+ 8 - 0
mixin.lisp

@@ -69,6 +69,14 @@
       (error "this stream does not support the NO-HANG argument"))
     (when interactive
       (error "this stream does not support the INTERACTIVE argument"))
+    (stream-write-sequence s seq start end))
+
+  (defmethod gray:stream-read-char-sequence
+      ((s trivial-gray-stream-mixin) seq &optional start end)
+    (stream-read-sequence s seq start end))
+
+  (defmethod gray:stream-write-char-sequence
+      ((s trivial-gray-stream-mixin) seq &optional start end)
     (stream-write-sequence s seq start end)))
 
 #+sbcl