Hey, Due to set of coincidents, I need to do some Lisp development on Windows Vista. I've got working SBCL 1.0.22, GNU Emacs 22.3 and slime from cvs. The problem is, after setting everything up as described in README, doing M-x slime won't cause slime repl buffer to pop up - instead, after inferior-lisp buffer is created and sbcl is run, the prompt suprisingly shows up in inferior-lisp buffer. Needless to say, it doesn't work at all. Here's how it looks like: http://wstaw.org/images/free/2009/04/28/26b7795f19bd27997b1eed6879338f.jpeg I will provide additional info if needed.
Adam Dodek Michalik wrote, On 28/4/09 10:28 PM:
The problem is, after setting everything up as described in README, doing M-x slime won't cause slime repl buffer to pop up -
slime-repl was moved out of the default installation into contrib some months ago so it is no longer loaded by default. You can use (slime-setup 'slime-repl) in your .emacs file to load it, or if you like the other features of slime-fancy you can use (slime-setup 'slime-fancy) instead to have something that will work with both the older released version of SLIME and the CVS version, since slime-fancy loads slime-repl.
On Wed, 29 Apr 2009 05:46:55 +1200, Sidney Markowitz wrote:
Adam Dodek Michalik wrote, On 28/4/09 10:28 PM:
The problem is, after setting everything up as described in README, doing M-x slime won't cause slime repl buffer to pop up -
slime-repl was moved out of the default installation into contrib some months ago so it is no longer loaded by default. You can use (slime-setup 'slime-repl) in your .emacs file to load it, or if you like the other features of slime-fancy you can use (slime-setup 'slime-fancy) instead to have something that will work with both the older released version of SLIME and the CVS version, since slime-fancy loads slime-repl.
But the screenshot clearly shows slime's REPL prompt and even a greeting ... unfortunately in the inferior lisp buffer instead of a dedicated repl buffer.
Cheers RalfD