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)
(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))
(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."
(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."
;;; 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"