Merge pull request #569 from rowanthorpe/silence-slime-warning
Avoid compile warning in test for slime
This commit is contained in:
commit
8c69e43088
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue