0.8.0.26:
authorChristophe Rhodes <csr21@cam.ac.uk>
Mon, 2 Jun 2003 15:55:48 +0000 (15:55 +0000)
committerChristophe Rhodes <csr21@cam.ac.uk>
Mon, 2 Jun 2003 15:55:48 +0000 (15:55 +0000)
A couple of contrib fixes
... adjust the dependencies in sb-posix (patch from Rudi
Schlatte sbcl-devel 2003-06-02)
... gray-streams stream-foo-sequence take their arguments in
the other order (David Lichteblau 2003-06-01)

contrib/sb-posix/sb-posix.asd
contrib/sb-simple-streams/cl.lisp
version.lisp-expr

index f01b53d..2a7252e 100644 (file)
@@ -11,7 +11,7 @@
                 (sb-grovel:grovel-constants-file
                  "constants"
                  :package :sb-posix :depends-on  ("defpackage"))
-                (:file "interface" :depends-on ("constants" "macros"))))
+                (:file "interface" :depends-on ("constants" "macros" "designator"))))
 
 (defmethod perform :after ((o test-op) (c (eql (find-system :sb-posix))))
   (provide 'sb-posix))
index 38335e4..acd9860 100644 (file)
@@ -669,7 +669,7 @@ simple-streams proposal.")
       (ansi-stream
        (%ansi-stream-read-sequence seq stream start end))
       (fundamental-stream
-       (sb-gray:stream-read-sequence seq stream start end)))))
+       (sb-gray:stream-read-sequence stream seq start end)))))
 
 (defun clear-input (&optional (stream *standard-input*) buffer-only)
   "Clears any buffered input associated with the Stream."
@@ -790,7 +790,7 @@ simple-streams proposal.")
       (ansi-stream
        (%ansi-stream-write-sequence seq stream start end))
       (fundamental-stream
-       (sb-gray:stream-write-sequence seq stream start end)))))
+       (sb-gray:stream-write-sequence stream seq start end)))))
 
 (defun terpri (&optional (stream *standard-output*))
   "Outputs a new line to the Stream."
index af4a276..0282a4a 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.8.0.25"
+"0.8.0.26"