Peter Eddy wrote: >> How are you attempting to start slime? Are you doing: >> >> 1. C-u M-x slime RET clojure RET >> >> OR >> >> 2. M-- M-x slime RET clojure RET >> > > Well, either method caused this error for me. I deleted all my slime > and clojure-related source trees and re-checked everything out again > (taking advantage to organize everything a little better this time > around), but same problem. > > So I backed up my .emacs and then got rid of all configuration for the > other lisps I was using (clisp, openmcl and sbcl) and now I can > successfully start slime for clojure. > > I'll eventually re-add the config I removed and try to find what it > was that broke clojure/slime. > > thanks everyone. > > - Peter >
If you have set "slime-lisp-implementations", make sure the entry for clojure looks like this: (clojure ("clojure") :init swank-clojure-init) For example, my slime-lisp-implementations is: (setq slime-lisp-implementations `( (sbcl ("sbcl")) (ccl ("ccl")) (clojure ("clojure") :init swank-clojure-init) (clisp ("clisp")) (abcl ("abcl")) (cmucl ("lisp")) (s48 ("scheme48") :init slime48-init-command))))) If I specify (clojure ("clojure")) instead of (clojure (clojure") :init swank-clojure-init), I get the same error as you. -- dl --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---