lua-users home
lua-l archive

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


"Thatcher Ulrich" <tu@tulrich.com> writes:
>
> I guess what's needed is a power-patch to make OP_CALL non-recursive,

It is important to remember that the recursive call in luaV_execute
happens not only via OP_CALL. All tag methods may result in luaV_execute
calling itself, and this may happen in several opcodes (OP_GETTABLE,
OP_SETTABLE, OP_ADD, etc.).

-- Roberto