From: cartercc
Subject: stoopid noobie question (SLIME)
Date: 
Message-ID: <06041274-e963-4109-9296-84ca92af9a68@h20g2000yqn.googlegroups.com>
In SLIME, how to you exit from an endless loop? Using Windows?

Ctl-C only puts me in the mini buffer instead of giving a soft
interrupt, and Ctl-Alt-Delete doesn't work, either. There doesn't seem
to be a menu item or shortcut that says, "TERMINATE PROGRAM NOW!"

Thanks, CC.

From: budden
Subject: Re: stoopid noobie question (SLIME)
Date: 
Message-ID: <f4c7501c-56bc-4f6e-8c89-478b826e4c7e@h20g2000yqn.googlegroups.com>
Hi!
  Ctrl-C Ctrl-C sends an interrupt to lisp process (in Linux). Never
tried it on Windows.
You might also try M-x slime-quit-lisp, or traverse SLIME menu in
EMACS.
---------------
$4/hour CL freelancer
From: Kenny
Subject: Re: stoopid noobie question (SLIME)
Date: 
Message-ID: <493d8cc1$0$4882$607ed4bc@cv.net>
cartercc wrote:
> In SLIME, how to you exit from an endless loop? Using Windows?
> 
> Ctl-C only puts me in the mini buffer instead of giving a soft
> interrupt, and Ctl-Alt-Delete doesn't work, either. There doesn't seem
> to be a menu item or shortcut that says, "TERMINATE PROGRAM NOW!"
> 
> Thanks, CC.

You are using Emacs and Slime on Windows where there are at least three 
commercial IDEs, including the Lambdorghini of Lisps, AllegroCL?

Oh, just noticed the subject... never mind!

:)

kt
From: Helmut Eller
Subject: Re: stoopid noobie question (SLIME)
Date: 
Message-ID: <m2wseamkyd.fsf@common-lisp.net>
* Kenny [2008-12-08 22:06+0100] writes:

> You are using Emacs and Slime on Windows where there are at least
> three commercial IDEs, including the Lambdorghini of Lisps, AllegroCL?

You mean "as expensive as a Lamborghini"?  :-)
From: Kenny
Subject: Re: stoopid noobie question (SLIME)
Date: 
Message-ID: <493ddc4d$0$20295$607ed4bc@cv.net>
Helmut Eller wrote:
> * Kenny [2008-12-08 22:06+0100] writes:
> 
> 
>>You are using Emacs and Slime on Windows where there are at least
>>three commercial IDEs, including the Lambdorghini of Lisps, AllegroCL?
> 
> 
> You mean "as expensive as a Lamborghini"?  :-)

You almost got it!

Not your fault, I probably should have gone with Lambdarghini, phonetics 
be damned.

:)

kt
From: Helmut Eller
Subject: Re: stoopid noobie question (SLIME)
Date: 
Message-ID: <m21vwio02n.fsf@common-lisp.net>
* cartercc [2008-12-08 21:39+0100] writes:

> In SLIME, how to you exit from an endless loop? Using Windows?

It's usually C-c C-b (for BREAK) or M-x slime-interrupt.  But it depends
on the Lisp implementation if that actually works.  If you're using
CLISP it probably doesn't work because SLIME sends a Unix signal and
that's not very useful on Windows.
 
You can also try to switch to the *inferior-lisp* buffer and press C-c
C-c there, which hopefully does something less Unixy.

Helmut.
From: Alex Mizrahi
Subject: Re: stoopid noobie question (SLIME)
Date: 
Message-ID: <493d8d5d$0$90275$14726298@news.sunsite.dk>
 HE> It's usually C-c C-b (for BREAK) or M-x slime-interrupt.  But it
 HE> depends on the Lisp implementation if that actually works.  If you're
 HE> using CLISP it probably doesn't work because SLIME sends a Unix signal
 HE> and that's not very useful on Windows.

no, looks like it it sends normal Windows break -- i've sort of checked it 
now.
it was weird, though, as this break had then propagated to a batch file
handler, so i had to "unlock" in inferior lisp to continue.