I'd like to install slime on my Emacs 23.2.1. Since M-x slime
doesn't succeed in start it, I modified the ~/.emacs file.
(setq inferior-lisp-program "/usr/bin/sbcl")
(add-to-list 'load-path "/usr/share/emacs/site-lisp/slime/")
(require 'slime)
(slime-setup)
Of course this doesn't work for the slime path in the second line of ~/.emacs file should be /usr/share/common-lisp/source/swank
instead. However, after I changed this directory, the error remains. It says like this:
Couldn't load "/usr/share/emacs/site-lisp/slime/swank-loader.lisp": file does not exist.
Why would this load external remain and how to make these things right?