[slime-devel] Re: slime startup with clbuild's START_SLIME_USING_CORE

Zach Beane xach at xach.com
Mon Feb 25 19:04:43 UTC 2008


Helmut Eller <heller at common-lisp.net> writes:

> I committed something along these line.

I checked out and started up a fresh Emacs, and I wasn't able to start
SLIME: "Package SWANK not found". The patch below fixed it, but I
don't claim I understand if it's the right fix or not. :)

Zach

Index: slime.el
===================================================================
RCS file: /project/slime/cvsroot/slime/slime.el,v
retrieving revision 1.913
diff -u -r1.913 slime.el
--- slime.el    24 Feb 2008 16:50:48 -0000      1.913
+++ slime.el    25 Feb 2008 19:03:58 -0000
@@ -1403,7 +1403,7 @@
     (format "%S\n\n"
             `(progn
                (load ,(expand-file-name loader) :verbose t)
-               (funcall (read-from-string "swank-loader:init"))
+               (funcall (read-from-string "swank-loader:init") :setup t)
                (funcall (read-from-string "swank:start-server")
                         ,port-filename
                         :coding-system ,encoding)))))






More information about the slime-devel mailing list