Skip to content

Commit

Permalink
Use sbcl in the absence of ccl on OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Apr 5, 2015
1 parent 5d25782 commit dbfe0df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/prelude-common-lisp.el
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dbfe0df

Please sign in to comment.