lua-users home
lua-l archive

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


> But I noticed the following line in lua_resume:
> 
> lua_assert(L->errfunc == 0 && L->nCcalls == 0);
> 
> This certainly makes it seem risky. Is this bound to cause other problems
> down the road?

Probably not. This assertion only checks consistency with the current
implementation (where errfunc should be 0).

-- Roberto