In ecl-curl.lisp, work even when Unicode is not available.

This commit is contained in:
Juan Jose Garcia Ripoll 2012-02-05 21:06:48 +01:00
parent e3af03e02f
commit b93d32a1a2

View file

@ -111,7 +111,7 @@
:input t
:output t
:buffering :full
:external-format :iso-8859-1)))
:external-format #+unicode :iso-8859-1 #-unicode :default)))
;;;---------------------------------------------------------------------------
;;; URL handling.
@ -250,7 +250,9 @@
(progn
(setf o (open file-name
:direction :output :if-exists :supersede
:external-format :latin-1))
:external-format
#-unicode :default
#+unicode :latin-1))
(if length
(let ((buf (make-array length
:element-type