If I enter (from an italian keyboard) a "small 'a' with grave accent"
#\à
I get
#\LATIN_CAPITAL_LETTER_A_WITH_TILDE
which is obviously wrong. I put the following lines in my emacs:
(setq inferior-lisp-program "c:/home/bin/clisp/full/lisp.exe -B c:/home/bin/clisp/full -M c:/home/bin/clisp/full/lispinit.mem -E utf-8 -q"); my Lisp system ... (setq slime-net-coding-system 'utf-8-unix) ; sets the coding system of communications between SLIME and Lisp (setq locale-coding-system 'utf-8) (set-terminal-coding-system 'utf-8) (set-keyboard-coding-system 'utf-8) (set-selection-coding-system 'utf-8) (set-default-coding-systems 'utf-8) (prefer-coding-system 'utf-8) (set-language-environment "UTF-8") (swank:create-server :coding-system "utf-8-unix")
but the problem is still there.
Thanks for any help u can give me.
Mario
Emacs 23.2.1, Clisp, Windows 7