On Apr 23, 2006, at 1:11 AM, Harald Hanche-Olsen wrote:
Have you set up the proper coding system for communication between the lisp backend and slime? What happens if you just type in a string containing some Unicode characters at the prompt? (With quotes of course, so you expect to just get the string back.)
Here is how I set it up for slime (from my .emacs file):
(setq slime-lisp-implementations '((sbcl ("sbcl") :coding-system utf-8-unix) (cmucl ("cmucl") :coding-system iso-latin-1-unix)))
- Harald
Thank you!! Setting the :coding-system solved the problem. I'm sorry for not noticing it although it is mentioned in the SLIME manual (Sec. 7.1) and CLiki (http://www.cliki.net/SLIME%20Tips).
Yuhei.