Browse Source

Merge pull request #569 from rowanthorpe/silence-slime-warning

Avoid compile warning in test for slime
custom
Bozhidar Batsov 12 years ago
parent
commit
8c69e43088
  1. 2
      modules/prelude-common-lisp.el

2
modules/prelude-common-lisp.el

@ -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…
Cancel
Save