From kogakazuo at gmail.com Sat Oct 25 04:17:51 2008 From: kogakazuo at gmail.com (Kazuo Koga) Date: Sat, 25 Oct 2008 13:17:51 +0900 Subject: [asdf-install-devel] Clozure CL with UTF-8 default Message-ID: <75EE89BD-B523-49C1-8233-37989CB971B2@gmail.com> 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))))