Next: , Up: Running and Stopping SBCL   [Contents][Index]


1.2.1.1 SBCL as an inferior Lisp in Emacs

To run SBCL as an inferior-lisp from Emacs in your ‘.emacs’ do something like:

;;; The SBCL binary and command-line arguments
(setq inferior-lisp-program "/opt/local/bin/sbcl --noinform")

--noinform’ suppress the printing of any banner or other informational message at startup. This makes it easier to write Lisp programs which work cleanly in Unix pipelines.

See Editor Integration