lua-users home
lua-l archive

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


> I found small bug, in lgencall.hpp.
> ---  output.Get(L, -1);
> +++ output.Get(L, idx+1);

Thank you for the bug report.
The same issue was in functions Output::GetArray and Output::GetCArray.
For your record, I have not corrected it the way you suggested :-),
but like this:

+++ output.Get(L, lua_gettop(L));