Browse Source

Avoid compile warning in test for slime

custom
Rowan Thorpe 12 years ago
parent
commit
646905c505
  1. 2
      modules/prelude-common-lisp.el

2
modules/prelude-common-lisp.el

@ -68,7 +68,7 @@
(defun prelude-start-slime ()
"Start SLIME unless it's already running."
(unless (slime-connected-p)
(unless (and (fboundp 'slime-connected-p) (slime-connected-p))
(save-excursion (slime))))
;; start slime automatically when we open a lisp file

Loading…
Cancel
Save