Skip to content

Commit

Permalink
0.9.7.26:
Browse files Browse the repository at this point in the history
	Log a bug in fill-pointer streams, from tichy on sbcl-help.
  • Loading branch information
csrhodes committed Dec 13, 2005
1 parent f9b113f commit 2e4a90f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions BUGS
Expand Up @@ -2103,3 +2103,17 @@ WORKAROUND:
(found by PFD ansi-tests)
in sbcl-0.9.7.15, (SETF (CLASS-NAME <class>) 'NIL) causes
(FIND-CLASS NIL) to return a #<STANDARD-CLASS NIL>.

395: Unicode and streams
One of the remaining problems in SBCL's Unicode support is the lack
of generality in certain streams.
a. FILL-POINTER-STREAMs: SBCL refuses to write (e.g. using FORMAT)
to streams made from strings that aren't character strings with
fill-pointers:
(let ((v (make-array 5 :fill-pointer 0 :element-type 'standard-char)))
(format v "foo")
v)
should return a non-simple base string containing "foo" but
instead errors.

(reported on sbcl-help by "tichy")
2 changes: 1 addition & 1 deletion version.lisp-expr
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".)
"0.9.7.25"
"0.9.7.26"

0 comments on commit 2e4a90f

Please sign in to comment.