From d1b53a3eb28d842fb694c067316108babfdf2342 Mon Sep 17 00:00:00 2001 From: Lars Tveito Date: Tue, 29 Sep 2015 23:57:29 +0200 Subject: [PATCH] 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. --- init.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.org b/init.org index 86bcc95..cc510e4 100644 --- a/init.org +++ b/init.org @@ -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))