diff options
author | Philipp Janda <siffiejoe@gmx.net> | 2015-01-23 00:16:56 +0100 |
---|---|---|
committer | Philipp Janda <siffiejoe@gmx.net> | 2015-01-23 00:16:56 +0100 |
commit | a3a8f9f706a931a6f1c54b7de6bfd1b853762a67 (patch) | |
tree | 4c14cd5a56e6f8accaa2d2b950eff7fc67dcfdbd /c-api | |
parent | e084e2ca33537d378ca008fd13bb7d989f7d22d9 (diff) | |
download | lua-compat-5.3-a3a8f9f706a931a6f1c54b7de6bfd1b853762a67.tar.gz lua-compat-5.3-a3a8f9f706a931a6f1c54b7de6bfd1b853762a67.tar.bz2 lua-compat-5.3-a3a8f9f706a931a6f1c54b7de6bfd1b853762a67.zip |
fix typo
Diffstat (limited to 'c-api')
-rw-r--r-- | c-api/compat-5.3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c-api/compat-5.3.h b/c-api/compat-5.3.h index 51bf7eb..f40f2ff 100644 --- a/c-api/compat-5.3.h +++ b/c-api/compat-5.3.h | |||
@@ -293,7 +293,7 @@ COMPAT53_API void luaL_requiref (lua_State *L, const char *modname, | |||
293 | #define LUA_KFUNCTION(_name) \ | 293 | #define LUA_KFUNCTION(_name) \ |
294 | static int (_name)(lua_State *L, int status, lua_KContext ctx); \ | 294 | static int (_name)(lua_State *L, int status, lua_KContext ctx); \ |
295 | static int (_name ## _52)(lua_State *L) { \ | 295 | static int (_name ## _52)(lua_State *L) { \ |
296 | luaK_Context ctx; \ | 296 | lua_KContext ctx; \ |
297 | int status = lua_getctx(L, &ctx); \ | 297 | int status = lua_getctx(L, &ctx); \ |
298 | return (_name)(L, status, ctx); \ | 298 | return (_name)(L, status, ctx); \ |
299 | } \ | 299 | } \ |