Hello, I'm having trouble using SLIME with CLISP. It seems that whenever I try to enter slime mode in Emacs I get the error,
SWANK-BACKEND:WAIT-FOR-INPUT not implemented
It also continually outputs, under Backtrace (where increasing-numbers and more-numbers are numbers that increase with each iteration):
[increasing-numbers] frame binding variables (~ = dynamically): | ~ SWANK::*SLDB-STEPPING-P* <--> more-numbers
My .emacs:
(setq inferior-lisp-program "C:/home/bin/clisp/full/lisp.exe -B C:/home/bin/clisp/full -M C:/home/bin/clisp/full/lispinit.mem -ansi -q") (add-to-list 'load-path "C:/home/bin/emacs/site-lisp/slime/") (require 'slime) (slime-setup)
Any help is appreciated, thanks.
* Shawn Stovall [2011-12-02 13:41] writes:
Hello, I'm having trouble using SLIME with CLISP. It seems that whenever I try to enter slime mode in Emacs I get the error,
SWANK-BACKEND:WAIT-FOR-INPUT not implemented
There is an implementation in swank-clisp.lisp for that it's preceded by a #-win32. Can you try that? It uses socket:socket-status which may or may not work. If it doesn't we have to find a replacement.
Helmut