Stephen on Software aka SOS

September 26, 2009

Slime and Offline Lisp Hyperspec

Filed under: Uncategorized — Tags: , — sljm @ 11:16 am

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.

June 1, 2009

SLIME, SBCL and Windows

Filed under: Programming, Tips — Tags: , — sljm @ 10:08 am

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

Blog at WordPress.com.