Selaa lähdekoodia

stream-read/write-char-sequence fuer clisp

dlichteblau 20 vuotta sitten
vanhempi
commit
5156672907
1 muutettua tiedostoa jossa 8 lisäystä ja 0 poistoa
  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