diff options
Diffstat (limited to '')
-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 | } \ |