Only load SLIME helper file if it exists
This commit is contained in:
parent
e8892caa99
commit
c381e1733e
@ -663,7 +663,9 @@
|
|||||||
(use-package slime)
|
(use-package slime)
|
||||||
(setq inferior-lisp-program "sbcl")
|
(setq inferior-lisp-program "sbcl")
|
||||||
(global-set-key (kbd "C-c s") 'slime-selector)
|
(global-set-key (kbd "C-c s") 'slime-selector)
|
||||||
(load (expand-file-name "~/quicklisp/slime-helper.el"))
|
(let ((helper-filename "~/quicklisp/slime-helper.el"))
|
||||||
|
(when (file-exists-p helper-filename)
|
||||||
|
(load (expand-file-name helper-filename))))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
This assumes that SBCL and Quicklisp, along with Quicklisp's SLIME
|
This assumes that SBCL and Quicklisp, along with Quicklisp's SLIME
|
||||||
|
Loading…
x
Reference in New Issue
Block a user