mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-06 02:40:26 -08:00
ECL-CDB and ECL-CURL still used UTF-8 when not having unicode
This commit is contained in:
parent
758f8cccce
commit
fef47c709c
2 changed files with 6 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue