diff options
author | Alan Pearce | 2017-04-22 16:21:24 +0200 |
---|---|---|
committer | Alan Pearce | 2017-04-22 16:21:24 +0200 |
commit | 7e21e4ccc85a2a119d4ad090031071caa08fa5bc (patch) | |
tree | c5b91fda26e3e0251a6e3bebafe2c6582f6707b8 | |
parent | 2d2bcaa101b46d8c139c1f679e4f679b6ab5af04 (diff) | |
download | dotfiles-7e21e4ccc85a2a119d4ad090031071caa08fa5bc.tar.lz dotfiles-7e21e4ccc85a2a119d4ad090031071caa08fa5bc.tar.zst dotfiles-7e21e4ccc85a2a119d4ad090031071caa08fa5bc.zip |
Emacs: Use ccl for a lisp, if available
-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 4a1d757..2003d9d 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 |