diff options
Diffstat (limited to 'lfunc.h')
-rw-r--r-- | lfunc.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lfunc.h,v 2.1 2003/12/10 12:13:36 roberto Exp $ | 2 | ** $Id: lfunc.h,v 2.2 2005/01/18 17:18:09 roberto Exp roberto $ |
3 | ** Auxiliary functions to manipulate prototypes and closures | 3 | ** Auxiliary functions to manipulate prototypes and closures |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -19,8 +19,8 @@ | |||
19 | 19 | ||
20 | 20 | ||
21 | Proto *luaF_newproto (lua_State *L); | 21 | Proto *luaF_newproto (lua_State *L); |
22 | Closure *luaF_newCclosure (lua_State *L, int nelems); | 22 | Closure *luaF_newCclosure (lua_State *L, int nelems, Table *e); |
23 | Closure *luaF_newLclosure (lua_State *L, int nelems, TValue *e); | 23 | Closure *luaF_newLclosure (lua_State *L, int nelems, Table *e); |
24 | UpVal *luaF_newupval (lua_State *L); | 24 | UpVal *luaF_newupval (lua_State *L); |
25 | UpVal *luaF_findupval (lua_State *L, StkId level); | 25 | UpVal *luaF_findupval (lua_State *L, StkId level); |
26 | void luaF_close (lua_State *L, StkId level); | 26 | void luaF_close (lua_State *L, StkId level); |