Swank- clojure and slime no longer interact in emacs

I made a mistake while updating existing ports with MacPorts - now slime and swank-clojure no longer work. I get the following message when I call clojure-jack-in

in emacs:

Versions differ: 2011-04-16 (slime) vs. 20100404 (swank). Continue? (y or n)

      

Typing y

will bring up the slime REPL, but then when I try to evaluate the expression in the REPL, I get a different message:

Not connected. Use `M-x slime' to start a Lisp. 

      

What's going on here?

Here are the relevant parts of my file init.el

:

;; slime
(setq inferior-lisp-program "/opt/local/bin/sbcl")
(add-to-list 'load-path
         "/opt/local/share/emacs/site-lisp/slime"
         "/opt/local/share/emacs/site-lisp/slime/contrib")
(add-hook 'slime-repl-mode-hook
      (defun clojure-mode-slime-font-lock()
          (require 'clojure-mode)
        (let (font-lock-mode)
          (clojure-mode-font-lock-setup))))
(require 'slime)
(slime-setup '(slime-repl))
(eval-after-load "slime" '(slime-setup '(slime-fancy slime-banner)))

;; clojure
(add-to-list 'load-path
         "~/.emacs.d/elpa/clojure-mode-el"
         "~/.emacs.d/elpa/paredit-22")
(require 'clojure-mode)
(defun turn-on-paredit () (paredit-mode 1))
(add-hook 'clojure-mode-hook 'turn-on-paredit)

      

+3


source to share


1 answer


swank-clojure only works with version 20100404 drain:

https://github.com/technomancy/swank-clojure/issues/120#issuecomment-4862556



Currently the option is only for downgrading slime.

+2


source







All Articles