lua-users home
lua-l archive

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


On Mon, May 24, 2010 at 4:53 PM, Jonathan Castello <twisolar@gmail.com> wrote:
>    if meta_f then f, s, var = meta_f(f) end

Pardon, that should read:

if meta_f then f, s, var = meta_f(f, unpack(var)) end

Otherwise the factory won't get its parameters.

~Jonathan