lua-users home
lua-l archive

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


> I find that without a "continue" statement some loops soon have
> deeply nested if/else statements in them.  This patch adds
> them to Lua 5.1-alpha.  It's also on the PowerPatches page of
> the Lua wiki.

I am afraid it may have a bug. If you "continue" to out of a block, you
may need to close pending upvalues. See 'breakstat' for details.

-- Roberto