Shammer's Philosophy

My private adversaria

SLIME Configuration Memo with Jessie, ClozureCL 1.11

I wrote the contents about SLIME configuration as SLIME Configuration on my Debian - Shammerism, but it is an old one. So I re-write same contents with the latest environment.
My current environment is:

My .emacs.d/init.el includes following configuration.

;; SLIME
(when (file-exists-p "~/quicklisp/slime-helper.el")
  (load (expand-file-name "~/quicklisp/slime-helper.el"))
  (setq inferior-lisp-program "/usr/local/bin/ccl64 -K utf-8"))

SLIME can be run in my Emacs with slime command. Here is a short evidence.

; SLIME 2.19
CL-USER> (+ 10 10)
20
CL-USER>