diff --git a/encodings.lisp b/encodings.lisp index 1ae1f773d6ed1d24d36399164ce16699bccd4bf1..f67edb5029cfa70bf03710f6706631574fe69a90 100644 --- a/encodings.lisp +++ b/encodings.lisp @@ -146,7 +146,7 @@ #+abcl (normalize-encoding encoding) ;; we bootstrap that in initialize-normalized-encodings #+allegro (excl:find-external-format encoding) #+clozure (ccl::normalize-external-format t encoding) - #+clisp (find-symbol* encoding :charset) + #+clisp (find-symbol* encoding :charset nil) #+cmu (stream::find-external-format encoding) #+ecl (ext:make-encoding encoding) #+lispworks @@ -170,7 +170,7 @@ (defun initialize-normalized-encodings (&optional warn) #+abcl - (loop :for name :in (let ((ae (find-symbol* :available-encodings :sys))) + (loop :for name :in (let ((ae (find-symbol* :available-encodings :sys nil))) (when ae (funcall ae))) :for n = (intern (string name) :keyword) ;; is this needed? :do (setf (gethash n *normalized-encodings*) name))