[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] luaffi (ffi library ala luajit's for the standard lua vm)
- From: Roberto Ierusalimschy <roberto@...>
- Date: Mon, 25 Jul 2011 11:22:12 -0300
> 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