diff options
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r-- | emacs/.emacs.d/init.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 4a1d757f..2003d9de 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -1920,7 +1920,8 @@ A REPL thing (and more) for Lisp. (if (file-exists-p ql-slime-helper) (load ql-slime-helper)) (slime-setup)) - (setq inferior-lisp-program (executable-find "sbcl")))) + (setq inferior-lisp-program (or (executable-find "sbcl") + (executable-find "ccl64"))))) #+END_SRC *** Clojure |