lua-users home
lua-l archive

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


Roberto Ierusalimschy wrote:
> I hope the following patch (in file ldo.c) solves both problems with
> varargs. Please let me know the results. 

That fixed both problems. :)

> (Should I use the context format for diff?)

No, that format's fine. Patch doesn't care.



BTW: I had hoped that:

function foo(...)  print(unpack(arg), '\n') end
function foo(...)  print(..., '\n') end

Would behave differently, with the former printing only the first arg,
and the latter printing all arguments as if the arguments had
literally been expanded inline. That's not how it works, huh?