Benjamin Goldberg <[EMAIL PROTECTED]> wrote: > Should the "raise" opcode produce resumable exceptions?
There is no problem with resuming after an opcode. E.g. when C<raise> is: invokecc Px # call exception handler and the handler returns by C<invoke P1> i.e. via the return continuation, execution just resumes. But when an exception is thrown somewhere inside C code, I can't imagine to resume there. leo