aboutsummaryrefslogtreecommitdiff
path: root/src/data.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-05-06 11:48:12 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-05-06 12:51:27 -0700
commitdd9f45e0f48e92cdab912089afd614880e392a4a (patch)
tree5f571228bbd1e7e55501d74664242de302559e99 /src/data.lisp
parent83e25a4b4d37ca1ea69b840d5323de897be0a54d (diff)
downloadconsfigurator-dd9f45e0f48e92cdab912089afd614880e392a4a.tar.gz
when collecting output, accept Unicode
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/data.lisp')
-rw-r--r--src/data.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.lisp b/src/data.lisp
index 2861cd0..de96905 100644
--- a/src/data.lisp
+++ b/src/data.lisp
@@ -538,7 +538,7 @@ Preprocessing must occur in the root Lisp."))
;; there will be a lot of spurious warnings due to not
;; compiling.
(let ((string (make-array '(0)
- :element-type 'base-char
+ :element-type 'character
:fill-pointer 0 :adjustable t)))
(handler-case
(with-output-to-string (stream string)