Re: Jumping back to REPL prompt on ^C

2010-07-27 Thread Taylor Venable
Hi Andy. Very sorry for the late reply, it's been a few weeks since I caught up with the list. On Fri, Jul 9, 2010 at 11:57 AM, Andy Wingo wrote: > On Thu 08 Jul 2010 21:31, Andy Wingo writes: > Except *sometimes* when I hit ^C I ended up with an error that stops the guile program com

Re: Jumping back to REPL prompt on ^C

2010-07-09 Thread Andy Wingo
On Thu 08 Jul 2010 21:31, Andy Wingo writes: >>> Except *sometimes* when I hit ^C I ended up with an error that stops >>> the guile program completely, seemingly due to the readline library >>> that I've enabled in the REPL. When I simplify my test I'm able to >>> get the same fatal error all th

Re: Jumping back to REPL prompt on ^C

2010-07-09 Thread Andy Wingo
Hi Neil & Taylor, On Sun 04 Jul 2010 21:52, Neil Jerram writes: > Taylor Venable writes: > >> Hi there, I'm writing a piece of code with a web server component, and >> part of that being that I want to jump back to the REPL when one hits >> ^C. So it would go something like this: >> >> scheme@

Re: Jumping back to REPL prompt on ^C

2010-07-04 Thread Neil Jerram
Taylor Venable writes: > Hi there, I'm writing a piece of code with a web server component, and > part of that being that I want to jump back to the REPL when one hits > ^C. So it would go something like this: > > scheme@(guile-user)> (start-server) > ;;; handling requests > ^C > scheme@(guile-u

Jumping back to REPL prompt on ^C

2010-06-20 Thread Taylor Venable
Hi there, I'm writing a piece of code with a web server component, and part of that being that I want to jump back to the REPL when one hits ^C. So it would go something like this: scheme@(guile-user)> (start-server) ;;; handling requests ^C scheme@(guile-user)> What I tried doing was essentiall