slime-helper.elc -> slime-helper.el

I used to manually compile slime-helper (installed by quicklisp), which
is really not worth the effort, seeing that it's a tiny file.
This commit is contained in:
Lars Tveito 2015-09-29 23:57:29 +02:00
parent c70d93a716
commit d1b53a3eb2

View File

@ -951,8 +951,8 @@
#+BEGIN_SRC emacs-lisp
(defun activate-slime-helper ()
(when (file-exists-p "~/.quicklisp/slime-helper.elc")
(load (expand-file-name "~/.quicklisp/slime-helper.elc"))
(when (file-exists-p "~/.quicklisp/slime-helper.el")
(load (expand-file-name "~/.quicklisp/slime-helper.el"))
(define-key slime-repl-mode-map (kbd "C-l")
'slime-repl-clear-buffer))
(remove-hook 'lisp-mode-hook #'activate-slime-helper))