November 17th, 2008
SLIME connection dropping when using UTF characters
Topics: Lisp, Howto, EmacsI ran into a problem today where my Slime connection would suddenly drop if I loaded a file that contained UTF characters.
Luckily the #lisp bods saved the day, here’s how you fix it:
- Add (setq slime-net-coding-system ‘utf-8-unix) to your .emacs
- Add the :coding-system “utf-8-unix” keyword parameter to your (swank:create-server) call
There’s more information available here.
Cheers, Dave.