diff options
Diffstat (limited to 'c-api/compat-5.3.h')
-rw-r--r-- | c-api/compat-5.3.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/c-api/compat-5.3.h b/c-api/compat-5.3.h index 8e10893..082a6a0 100644 --- a/c-api/compat-5.3.h +++ b/c-api/compat-5.3.h | |||
@@ -293,6 +293,9 @@ typedef int (*lua_KFunction)(lua_State *L, int status, lua_KContext ctx); | |||
293 | #define lua_geti COMPAT53_CONCAT(COMPAT53_PREFIX, _geti) | 293 | #define lua_geti COMPAT53_CONCAT(COMPAT53_PREFIX, _geti) |
294 | COMPAT53_API int lua_geti (lua_State *L, int index, lua_Integer i); | 294 | COMPAT53_API int lua_geti (lua_State *L, int index, lua_Integer i); |
295 | 295 | ||
296 | #define lua_getextraspace COMPAT53_CONCAT(COMPAT53_PREFIX, _getextraspace) | ||
297 | COMPAT53_API void *lua_getextraspace (lua_State *L); | ||
298 | |||
296 | #define lua_isinteger COMPAT53_CONCAT(COMPAT53_PREFIX, _isinteger) | 299 | #define lua_isinteger COMPAT53_CONCAT(COMPAT53_PREFIX, _isinteger) |
297 | COMPAT53_API int lua_isinteger (lua_State *L, int index); | 300 | COMPAT53_API int lua_isinteger (lua_State *L, int index); |
298 | 301 | ||
@@ -339,7 +342,6 @@ COMPAT53_API void luaL_requiref (lua_State *L, const char *modname, | |||
339 | 342 | ||
340 | /* XXX not implemented: | 343 | /* XXX not implemented: |
341 | * lua_isyieldable | 344 | * lua_isyieldable |
342 | * lua_getextraspace | ||
343 | * lua_arith (new operators) | 345 | * lua_arith (new operators) |
344 | * lua_pushfstring (new formats) | 346 | * lua_pushfstring (new formats) |
345 | */ | 347 | */ |