Re: Backtrace and enhanced catch

2006-02-01 Thread Neil Jerram
Kevin Ryde <[EMAIL PROTECTED]> writes: > ;; lazy-catch, but with HANDLER allowed to return > (define-public (c-lazy-catch key thunk handler) > (catch 'c-lazy-catch > (lambda () > (lazy-catch key thunk > (lambda args > (t

[PATCH] Fix for `make-uniform-array'

2006-02-01 Thread Ludovic Courtès
Hi, The following patch fixes `make-uniform-array' in 1.7 so that it properly initializes vectors according to the FILL argument --- see the discussion on `guile-user'[0]. The `#\nul' case mentioned in that thread remains somewhat incompatible but perhaps this is not too much of a problem. Hmm..