Just put the following in your .emacs files
(setq common-lisp-hyperspec-root "file:/usr/local/lisp/CLHS6/HyperSpec/")
There are lots of useful information in SLIME Features that are useful for those who are just starting out with SLIME.
Just put the following in your .emacs files
(setq common-lisp-hyperspec-root "file:/usr/local/lisp/CLHS6/HyperSpec/")
There are lots of useful information in SLIME Features that are useful for those who are just starting out with SLIME.
I was having lots of problems setting up SBCL 1.0.22 and the latest SLIME CVS in Emacs 22.3.1. I had lots of help from the SLIME mailing list and this is my final .emacs files.
I am assuming that you have installed/unzip everything into a directory called c:\lisp on your system. WIth SLIME in c:\lisp\slime and SBCL in c:\lisp\sbcl.
(add-to-list ‘load-path “C:/lisp/slime”);Your slime directory
(setq inferior-lisp-program “sbcl -core c:/list/sbcl/sbcl.core”); your lisp system
(require ’slime)
(eval-after-load “slime” (slime-setup ‘(slime-repl))) ;This is different from the documentation