なんだこれは

はてなダイアリーから移転しました。

port日記

The following installed ports are outdated:
abcl 0.27.0_0 < 1.0.0_0
slime 20110929_0 < 20111022_0

abclが一気にversion 1に!!

slimeからのお言葉

To use SLIME, you need to have a Common Lisp installed with which you
wish to interact. At the moment, 'sbcl', 'abcl', 'ccl', 'ecl' and
'clisp' all work. As a convenience, port variants for SLIME exist
which require the installation of these Lisps.

Then put the following in your ~/.emacs:

(add-to-list 'load-path "/opt/local/share/emacs/site-lisp/slime")
(setq slime-lisp-implementations
     `((sbcl ("/opt/local/bin/sbcl"))
       (abcl ("/opt/local/bin/abcl"))
       (clisp ("/opt/local/bin/clisp"))))
(require 'slime)
(slime-setup  '(slime-repl slime-asdf slime-fancy slime-banner))

Populate the initialization list in SLIME-LISP-IMPLEMENTATIONS with
the correct paths to the Common Lisp exectuables you wish to use.

Then, 'M-x slime' from Emacs should connect you to the first Common
Lisp implementation in the list. 'C-- M-x slime' will present an
interactive chooser for additional implementations in the list.