Hi,
I'm experiencing some problems getting CLISP working under SLIME. It just hangs in the middle of compiling:
;; Compiling file /usr/local/share/emacs/site-lisp/slime/swank.lisp ...
;; Wrote file /home/susers/daniel/.slime/fasl/clisp-2.33.80/swank.fas ;; Loading file /home/susers/daniel/.slime/fasl/clisp-2.33.80/swank.fas ... ;; Loaded file /home/susers/daniel/.slime/fasl/clisp-2.33.80/swank.fas The following special variables were defined too late: SWANK-BACKEND::*BUFFER-NAME* SWANK-BACKEND::*BUFFER-OFFSET* The following functions were used but are deprecated:
SET - This function name is anachronistic. Use SETF SYMBOL-VALUE instead. 0 errors, 3 warnings
WARNING: These Swank interfaces are unimplemented: (ACTIVATE-STEPPING ADD-FD-HANDLER ADD-SIGIO-HANDLER ALL-THREADS DISASSEMBLE-FRAME FIND-THREAD GETPID INSPECT-FOR-EMACS INTERRUPT-THREAD RECEIVE REMOVE-FD-HANDLERS REMOVE-SIGIO-HANDLERS SEND SLDB-BREAK-AT-START SLDB-BREAK-ON-RETURN SPAWN THREAD-ID WHO-MACROEXPANDS WHO-SPECIALIZES) ;; Loaded file /usr/local/share/emacs/site-lisp/slime/swank-loader.lisp T [2]>
And there it sits until I abort the connection. Vitals:
SLIME: CVS as of today CLISP: 2.33.80 Emacs: GNU Emacs 21.3 OS: Solaris 10 SPARC inferior-lisp-program: "/usr/local/bin/clisp -K full"
TIA,
Dan -- Dan Debertin | airboss@nodewarrior.org | www.nodewarrior.org |
Daniel Debertin airboss@nodewarrior.org writes:
Hi,
I'm experiencing some problems getting CLISP working under SLIME. It just hangs in the middle of compiling:
It seems that everything was compiled and that it hangs when Emacs tries to connect.
Can you start the swank server in a xterm with something like:
(load "swank-loader.lisp") ... (swank:create-swank-server) ;; Swank started at port: 4005
and then connect with M-x slime-connect from Emacs? If you set swank::*log-events* to t, you get some debug output. There's also some debugging stuff in the *slime-events* buffer.
Helmut.