diff options
Diffstat (limited to 'lfunc.h')
-rw-r--r-- | lfunc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ LUAI_FUNC CClosure *luaF_newCclosure (lua_State *L, int nelems); | |||
47 | LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nelems); | 47 | LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nelems); |
48 | LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl); | 48 | LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl); |
49 | LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level); | 49 | LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level); |
50 | LUAI_FUNC void luaF_close (lua_State *L, StkId level); | 50 | LUAI_FUNC int luaF_close (lua_State *L, StkId level, int status); |
51 | LUAI_FUNC void luaF_unlinkupval (UpVal *uv); | 51 | LUAI_FUNC void luaF_unlinkupval (UpVal *uv); |
52 | LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f); | 52 | LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f); |
53 | LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number, | 53 | LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number, |