Re: Catching

2010-02-22 Thread Hans Aberg
On 22 Feb 2010, at 14:22, Ludovic Courtès wrote: I seem to not get the catch handler called, when using guile interactively. Might you provide a small example? Something like: (catch 'FOO (throw 'FOO "Test") (lambda (x . xt) (display x) (display " . ") (display xt))) The second argument of ‘ca

Re: Catching

2010-02-22 Thread Ludovic Courtès
Hi, Hans Aberg writes: > I seem to not get the catch handler called, when using guile > interactively. Might you provide a small example? Something like: > (catch 'FOO (throw 'FOO "Test") (lambda (x . xt) (display x) (display > " . ") (display xt))) The second argument of ‘catch’ should be a th