Re: `trace' is broken

2001-06-21 Thread Neil Jerram
> "Martin" == Martin Grabmueller <[EMAIL PROTECTED]> writes: Martin> Hello list, I was just trying out an example from the GRM, Martin> node `Trace' ... Martin> It would be really nice if we could get that working again Martin> before 1.6. Can you try the patch below? It wo

[FIXED] Re: Bug in guile.el

2001-06-21 Thread Neil Jerram
> "Thomas" == Thomas Bushnell, BSG <[EMAIL PROTECTED]> writes: Thomas> The following code from guile-core/emacs/guile.el fails in Thomas> the event that "channel.scm" is not found anywhere: Thomas> In that event, the variable is set to the value of Thomas> load-path; clearly

Re: `trace' is broken

2001-06-21 Thread Neil Jerram
> "Martin" == Martin Grabmueller <[EMAIL PROTECTED]> writes: Martin> Hello list, I was just trying out an example from the GRM, Martin> node `Trace': guile> ... lazy-catch handler did return. ABORT: (misc-error) Martin> It would be really nice if we could get that working a

`trace' is broken

2001-06-21 Thread Martin Grabmueller
Hello list, I was just trying out an example from the GRM, node `Trace': guile> (define (rev ls) ... (if (null? ls) ... '() ... (append (rev (cdr ls)) (cons (car ls) '() guile> (rev '(a b c d e)) (e d c b a) guile> (trace rev) (rev) guile> (rev '(a b c

Bug in guile.el

2001-06-21 Thread Thomas Bushnell, BSG
The following code from guile-core/emacs/guile.el fails in the event that "channel.scm" is not found anywhere: (defvar gulie-channel-file (catch 'return (mapc (lambda (dir) (let ((file (expand-file-name "channel.scm" dir))) (if (file-exists-p file) (throw 'return