On Sun, 3 Oct 2004, Paolo Amoroso wrote:
Paolo Amoroso amoroso@mclink.it writes:
I get one window when starting SLIME with `M-x slime', but two windows with `C-u M-x slime'. I use SLIME CVS sources updated a few hours ago, GNU Emacs 20.7.2, and CMUCL 2004-09 snapshot under Debian Woody.
Problem solved. In the `clim' script mentioned in my other post:
#!/bin/sh DIR=~/src/McCLIM cmucl -core $DIR/clim.core
the shell process is kept around, which probably confuses SLIME. Exec-ing CMUCL solves the problem, i.e. only one window appears. Apologies for the noise.
Now I understand why slime had the wrong idea about the pid with sbcl and cmucl and not with clisp and acl. The former are started from shell scripts and the wrong pid was of the shell instance that executed the scripts.
Thanks!
Andras