string-streams do not support full characters yet.

This commit is contained in:
jgarcia 2008-03-11 22:17:38 +00:00
parent 5fdd1b564a
commit 3414537e9e

View file

@ -1996,8 +1996,8 @@
:downcase)))))
,@(expand-directive-list before))
#+ecl
`(let ((string (make-array 10 :element-type 'character :fill-pointer 0
:adjustable t)))
`(let ((string (make-array 10 :element-type 'base-char
:fill-pointer 0 :adjustable t)))
(unwind-protect
(with-output-to-string (stream string)
,@(expand-directive-list before))
@ -2033,8 +2033,8 @@
(before (subseq directives 0 posn))
(jumped t)
(after (nthcdr (1+ posn) directives))
(string (make-array 10 :element-type 'character :adjustable t
:fill-pointer 0)))
(string (make-array 10 :element-type 'base-char
:adjustable t :fill-pointer 0)))
(unwind-protect
(with-output-to-string (stream string)
(setf args (interpret-directive-list stream before orig-args args)))