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:
- OS is Debian Jessie, uname -a result is Linux MyJessie 3.16.0-4-amd64 #1 SMP Debian 3.16.39-1+deb8u2 (2017-03-07) x86_64 GNU/Linux
- ClozureCL is Clozure Common Lisp Version 1.11-r16635 (LinuxX8664)
- SLIME version is 2.19
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>