William Coleda <[EMAIL PROTECTED]> wrote: > I just noticed some test failures in the tcl suite.
exception syntax will change slightly.
> set P4, P5["_invoke_cc"]
especially these constructs (resumable handling).
Please use currently a local handler:
newsub ignore, .Exception_Handler, catch
set_eh ignore
# ops that might fail
clear_eh
catch:
Even better, stuff above 2 handler install lines into a macro, as the
syntax will likely be:
new ignore, .Exception_Handler
push_eh ignore, catch
leo
