Re: [ANN] luaffi (ffi library ala luajit's for the standard lua vm)
[
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: 2011年7月25日 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