Index: slime/ChangeLog diff -u slime/ChangeLog:1.2315 slime/ChangeLog:1.2316 --- slime/ChangeLog:1.2315 Tue Apr 10 10:52:57 2012 +++ slime/ChangeLog Wed Apr 11 04:38:56 2012 @@ -1,3 +1,8 @@ +2012-04-11 Helmut Eller heller@common-lisp.net + + * slime.el ([test] utf-8-source): Use the encoded byte sequence of + the Unicode string. + 2012-04-10 Stas Boukarev stassats@gmail.com
* slime.el (def-slime-test utf-8-source): Define only when
Just a doubt... The SLIME manual says: the value of this variable is only checked when swank accepts the connection so you should set it via ~/.swank.lisp.
So I put in .swank.lisp (setq swank:*globally-redirect-io* t) but then SBCL complained that the variable is undefined. So I had to change it to (defvar swank:*globally-redirect-io* t) Is this the right way to do it?
giovanni
Giovanni Gigante giov@cidoc.iuav.it writes:
Just a doubt... The SLIME manual says: the value of this variable is only checked when swank accepts the connection so you should set it via ~/.swank.lisp.
So I put in .swank.lisp (setq swank:*globally-redirect-io* t) but then SBCL complained that the variable is undefined. So I had to change it to (defvar swank:*globally-redirect-io* t) Is this the right way to do it?
Yes.