Skip to content

Commit

Permalink
1.0.10.44: BUFFER-P, not BUFFERP
Browse files Browse the repository at this point in the history
 * Reported by Yuri Vishnevsky on sbcl-devel.

 * Test-case coming Real Soon.
  • Loading branch information
nikodemus committed Oct 11, 2007
1 parent 365286d commit a02dc24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/code/fd-stream.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
(let ((ibuf (fd-stream-ibuf fd-stream))
(obuf (fd-stream-obuf fd-stream))
(queue (loop for item in (fd-stream-output-queue fd-stream)
when (bufferp item)
when (buffer-p item)
collect (reset-buffer item))))
(when ibuf
(push (reset-buffer ibuf) queue))
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Original file line number Diff line number Diff line change
Expand Up @@ -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".)
"1.0.10.43"
"1.0.10.44"

0 comments on commit a02dc24

Please sign in to comment.