Mark Evenson mark.evenson@gmx.at writes:
The basic SLIME recipe in the toplevel README goes:
(add-to-list 'load-path "~/hacking/lisp/slime/") (setq inferior-lisp-program "/opt/sbcl/bin/sbcl") (require 'slime) (slime-setup)
but this will trip up anybody who tries to use the contrib modules via installing functions in SLIME-LOAD-HOOK, as it will never get called when M-x slime is invoked, at least on Emacs 22.
You have to set up the `slime-load-hook' before you require SLIME.
-T.