lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> By the way, would it be safe to, er, redefine the error() function to 
> not stop the interpreter?

There are two misconceptions here. First, the error function does not stop
the interpreter, it only aborts the current chunk. Second, not all errors
are raised by calling error(). Actually, most aren't.
--lhf