From: Christophe Rhodes Date: Mon, 2 Jun 2003 15:55:48 +0000 (+0000) Subject: 0.8.0.26: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=f5f4dc4eb88fd23d8fb835c21ca862274d26c18e;p=sbcl.git 0.8.0.26: 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) --- diff --git a/contrib/sb-posix/sb-posix.asd b/contrib/sb-posix/sb-posix.asd index f01b53d..2a7252e 100644 --- a/contrib/sb-posix/sb-posix.asd +++ b/contrib/sb-posix/sb-posix.asd @@ -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)) diff --git a/contrib/sb-simple-streams/cl.lisp b/contrib/sb-simple-streams/cl.lisp index 38335e4..acd9860 100644 --- a/contrib/sb-simple-streams/cl.lisp +++ b/contrib/sb-simple-streams/cl.lisp @@ -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." diff --git a/version.lisp-expr b/version.lisp-expr index af4a276..0282a4a 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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"