Hi,
I just (re) setup my slime environment with clozure lisp today. I notice that the environment seems different. I used to M-x slime and get the animation, resulting in a CL-User prompt.
Has something changed ? I get something like this now ...
(progn (load "/usr/local/slime/swank-loader.lisp" :verbose t) (funcall (read-from-string "swank-loader:init")) (funcall (read-from-string "swank:start-server") "/var/folders/WM/WMtd8GBtE5eysPzlefJIm++++TI/-Tmp-/slime.6054" :coding-system "iso-latin-1-unix"))
Welcome to Clozure Common Lisp Version 1.2-r10552 (DarwinX8664)! ? ;Loading #P"/usr/local/slime/swank-loader.lisp"... ;Loading #P"/Users/Vinay/.slime/fasl/2008-12-25/openmcl-version_1.2-r10552__(darwinx8664)-darwin-x86-64/swank-backend.dx64fsl"... ;Loading #P"/Users/Vinay/.slime/fasl/2008-12-25/openmcl-version_1.2-r10552__(darwinx8664)-darwin-x86-64/metering.dx64fsl"... ;Loading #P"/Users/Vinay/.slime/fasl/2008-12-25/openmcl-version_1.2-r10552__(darwinx8664)-darwin-x86-64/swank-openmcl.dx64fsl"... ;Loading #P"/Users/Vinay/.slime/fasl/2008-12-25/openmcl-version_1.2-r10552__(darwinx8664)-darwin-x86-64/swank-gray.dx64fsl"... ;Loading #P"/Users/Vinay/.slime/fasl/2008-12-25/openmcl-version_1.2-r10552__(darwinx8664)-darwin-x86-64/swank.dx64fsl"... ; Warning: These Swank interfaces are unimplemented: ; (ACTIVATE-STEPPING ADD-FD-HANDLER ADD-SIGIO-HANDLER CALLS-WHO FIND-SOURCE-LOCATION MACROEXPAND-ALL REMOVE-FD-HANDLERS REMOVE-SIGIO-HANDLERS RESTART-FRAME RETURN-FROM-FRAME SAVE-IMAGE SLDB-BREAK-AT-START SLDB-BREAK-ON-RETURN SLDB-STEP-INTO SLDB-STEP-NEXT SLDB-STEP-OUT) ; While executing: SWANK-BACKEND::WARN-UNIMPLEMENTED-INTERFACES, in process listener(1). ;; Swank started at port: 50083. 50083 ?
Anyway to get back to the way it was before ? Also, the Slime menu options aren't there anymore in Emacs. I use the Carbon Emacs port.
Thanks,
Vinay
* Vinay [2008-12-26 19:55+0100] writes:
;; Swank started at port: 50083. 50083 ?
Anyway to get back to the way it was before ? Also, the Slime menu options aren't there anymore in Emacs. I use the Carbon Emacs port.
If you load the slime-repl contrib most things should be as before. Add something like (slime-setup '(slime-repl)) to your .emacs.
Helmut.