lua-users home
lua-l archive

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


> Another 5.2 error.
> 
> [...]
> 
> lua_call has changed to lua_callk.

lua.h has an unconditional macro defining lua_call in terms of lua_callk: 

  #define lua_call(L,n,r)         lua_callk(L, (n), (r), 0, NULL)


-- Roberto