Avoid compile warning in test for slime
This commit is contained in:
parent
fcc82c75ff
commit
646905c505
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@
|
||||||
|
|
||||||
(defun prelude-start-slime ()
|
(defun prelude-start-slime ()
|
||||||
"Start SLIME unless it's already running."
|
"Start SLIME unless it's already running."
|
||||||
(unless (slime-connected-p)
|
(unless (and (fboundp 'slime-connected-p) (slime-connected-p))
|
||||||
(save-excursion (slime))))
|
(save-excursion (slime))))
|
||||||
|
|
||||||
;; start slime automatically when we open a lisp file
|
;; start slime automatically when we open a lisp file
|
||||||
|
|
Loading…
Reference in a new issue