Re: displaying a backtrace in the shell

2007-08-08 Thread Erica L Cooper
hi, yes, that worked - I had previously been enabling backtrace for the command line but not debug. thanks so much! -erica On Wed, 8 Aug 2007, Ludovic Court?s wrote: Hi, Erica L Cooper <[EMAIL PROTECTED]> writes: which, if you run in interactive Guile, displays the backtrace w

displaying a backtrace in the shell

2007-08-07 Thread Erica L Cooper
hello, I am trying to get a guile script that is executed on a port server to display a backtrace if there is an error. as of now I have: (define (backtrace-test args) (catch 'ignore (lambda () (lazy-catch #t (lambda () (throw 'test-error))