Helmut Eller heller@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)))))