Fix common-lisp setup

This commit is contained in:
Lars Tveito 2020-03-10 20:52:45 +01:00
parent b08b298e17
commit ef1aeb8809

View File

@ -953,9 +953,9 @@
(load (expand-file-name "~/.quicklisp/slime-helper.el")) (load (expand-file-name "~/.quicklisp/slime-helper.el"))
(define-key slime-repl-mode-map (kbd "C-l") (define-key slime-repl-mode-map (kbd "C-l")
'slime-repl-clear-buffer)) 'slime-repl-clear-buffer))
(remove-hook 'lisp-mode-hook #'activate-slime-helper)) (remove-hook 'common-lisp-mode-hook #'activate-slime-helper))
(add-hook 'lisp-mode-hook #'activate-slime-helper) (add-hook 'common-lisp-mode-hook #'activate-slime-helper)
#+END_SRC #+END_SRC
We can specify what Common Lisp program Slime should use (I use SBCL). We can specify what Common Lisp program Slime should use (I use SBCL).