[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Iterate over vararg
- From: Roberto Ierusalimschy <roberto@...>
- Date: Thu, 20 Dec 2018 15:12:37 -0200
> Thank you, that simplifies the code. [...]
- if (!lua_isnone(L, lua_upvalueindex(i))) {
+ if (0 < i <= 256 && !lua_isnone(L, lua_upvalueindex(i))) {
-- Roberto