I'm trying to setup Slime with LWW and Xemacs.
I've just made a checkout of Slime from the CVS.
 
First I load Slime in LW and start :
(swank::create-swank-server 4005 :spawn #'swank::simple-announce-function t)
 
Then in Xemacs I use Bill Clementson's setup:
;;;; SLIME Setup by Bill Clementson
 
(require 'slime)
(add-hook 'lisp-mode-hook (lambda () (slime-mode t)))
(add-hook 'inferior-lisp-mode-hook (lambda () (inferior-slime-mode t)))
(slime-autodoc-mode)
 
(defun my-setup-slime ()
  "Set up common variables used by slime."
  (interactive)
  (setq slime-multiprocessing t)
  (require 'completer)
  (require 'slime)
  (modify-coding-system-alist 'process "lisp" 'undecided-unix)
  (slime-setup))
I call my-setup-slime then slime-connect.
 
No errors so far.
 
Now I try "Show REPL", I get a Lisp prompt but when I try to evaluate a form I just get:
;pipelined request... (swank:listener-eval "(+ 1 2)
")
 
I tried to run slime-run-tests and get assertion failed: (not (slime-busy-p))
 
Any idea ?
 
Marc