Jan Nieuwenhuizen writes:
> Hi,
>
> In stable-2.0, this works
>
> (define-module (case) #:export (else))
> (define (else ast) (if (> (length ast) 3) (cadddr ast) #f))
> (define t 't) (case t ((t) #t) (else (eq? t 't)))
>
> with latest master it breaks as soon as else is added to the e
Federico Beffa writes:
> Neil Jerram writes:
>
>>
>> This is just a guess, but what happens if you do this:
>>
>> $ LD_LIBRARY_PATH=/usr/local/lib /usr/local/bin/guile
>>
>> Regards,
>> Neil
>
> With this it works!
>
> I notice that there is an /etc/ld.so.cache file. Do I somehow need to up
Carlos Pita writes:
> Thank you very much, Dave!
>
>> Couldn't you just use (error)? It will enter the debugger if run from
>
> I'm doing exactly that, but then there is the limitation that this
> would be postmortem debugging and sometimes I want to suspend
> execution, examine the environment,