[asdf-install-devel] Clozure CL with UTF-8 default

Kazuo Koga kogakazuo at gmail.com
Sat Oct 25 04:17:51 UTC 2008


Hi,

I'm using Clozure CL(1.2 on macppc) with none default external-format.
I use UTF-8.
so,
(setf ccl:*default-external-format* :utf-8)

This can write Lisp code in Japanese and cooperate with SLIME well.

But this makes problem with ASDF-INSTALL.
I wrote small patch for ASDF-INSTALL to use explicit external-format  
to save file.

Thanks,
--
koga


---------------------------------

asdf-install-unstable/asdf-install/port.lisp:

   (defun open-file-arguments ()
     (append
      #+sbcl
      '(:external-format :latin1)
      #+:scl
      '(:external-format :iso-8859-1)
+    #+:clozure
+    '(:external-format :iso-8859-1)
      #+(or :clisp :digitool (and :lispworks :win32))
      '(:element-type (unsigned-byte 8))))





More information about the asdf-install-devel mailing list