I just updated from Clojure 1.2 to clojure 1.3.0 on Windows 7 and emacs is still going to Clojure 1.2 with swank/slime.
Any suggestions where to change this so it uses 1.3?
I just updated from Clojure 1.2 to clojure 1.3.0 on Windows 7 and emacs is still going to Clojure 1.2 with swank/slime.
Any suggestions where to change this so it uses 1.3?
lein deps
will fetch the clojure version you've declared in the:dependencies
of yourproject.clj
, andlein swank
will start a swank server using that clojure version.BTW: From inside emacs, I think it's more convenient to simply use
M-x clojure-jack-in
from a buffer associated with some file in your project. That'll also start swank for you.