Use sbcl in the absence of ccl on OS X

This commit is contained in:
Bozhidar Batsov 2015-04-05 21:06:47 +03:00
parent 5d25782b6d
commit dbfe0df1d0

View file

@ -54,7 +54,8 @@
(sbcl ("sbcl" "--noinform") :coding-system utf-8-unix)))
;; select the default value from slime-lisp-implementations
(if (eq system-type 'darwin)
(if (and (eq system-type 'darwin)
(executable-find "ccl"))
;; default to Clozure CL on OS X
(setq slime-default-lisp 'ccl)
;; default to SBCL on Linux and Windows