From f5f4dc4eb88fd23d8fb835c21ca862274d26c18e Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Mon, 2 Jun 2003 15:55:48 +0000 Subject: [PATCH] 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) --- contrib/sb-posix/sb-posix.asd | 2 +- contrib/sb-simple-streams/cl.lisp | 4 ++-- version.lisp-expr | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/sb-posix/sb-posix.asd b/contrib/sb-posix/sb-posix.asd index f01b53db2..2a7252e80 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 38335e436..acd9860b9 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 af4a2767e..0282a4ae5 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" -- 2.11.4.GIT