Make ANSI Common Lisp available on Haiku (again)

I am in Common Lisp Paradise: latest SBCL works with Emacs+SLIME:

To configure it:

  1. Install Emacs and SBCL from HaikuDepot
  2. Open Emacs and run:
ALT+X package-install <ENTER>
slime
  1. Close Emacs.
  2. Edit ~/.emacs file by appending:
(setq inferior-lisp-program "sbcl")

or, if you have SBCL built from source:

(setq inferior-lisp-program "/path/to/sbcl/run-sbcl.sh")
  1. Start Emacs again and:
ALT+X slime
2 Likes