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 without com

Re: displaying a backtrace in the shell

2007-08-08 Thread Ludovic Courtès
Hi, Erica L Cooper <[EMAIL PROTECTED]> writes: > which, if you run in interactive Guile, displays the backtrace without > complaint. however, when you execute this from the command line, it > says, > > Exception during displaying of backtrace: wrong-type-arg My guess is that when you run it fro

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))