Use sbcl in the absence of ccl on OS X
This commit is contained in:
parent
5d25782b6d
commit
dbfe0df1d0
1 changed files with 2 additions and 1 deletions
|
@ -54,7 +54,8 @@
|
||||||
(sbcl ("sbcl" "--noinform") :coding-system utf-8-unix)))
|
(sbcl ("sbcl" "--noinform") :coding-system utf-8-unix)))
|
||||||
|
|
||||||
;; select the default value from slime-lisp-implementations
|
;; 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
|
;; default to Clozure CL on OS X
|
||||||
(setq slime-default-lisp 'ccl)
|
(setq slime-default-lisp 'ccl)
|
||||||
;; default to SBCL on Linux and Windows
|
;; default to SBCL on Linux and Windows
|
||||||
|
|
Loading…
Reference in a new issue