[slime-devel] Slime with LWW and Xemacs

Marc Battyani marc.battyani at fractalconcept.com
Wed Jan 26 14:47:31 UTC 2005


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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/slime-devel/attachments/20050126/b32f2e2c/attachment.html>


More information about the slime-devel mailing list