aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/combinator.lisp2
-rw-r--r--src/data.lisp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/combinator.lisp b/src/combinator.lisp
index 02e558c..2101132 100644
--- a/src/combinator.lisp
+++ b/src/combinator.lisp
@@ -107,7 +107,7 @@ apply the elements of REQUIREMENTS in reverse order."
;; note that the :FAILED-CHANGE value is only used within this function and
;; should not be returned by property subroutines, per the spec
(defun apply-and-print (propapps &optional unapply)
- (let ((buffer (make-array '(0) :element-type 'base-char
+ (let ((buffer (make-array '(0) :element-type 'character
:fill-pointer 0 :adjustable t))
(return-value :no-change)
;; Remove any null propapps because we don't want to print anything
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)