diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-01-18 15:18:09 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-01-18 15:18:09 -0200 |
commit | 334ba8132bd0471ffe2a9964b577d3ae89ec490a (patch) | |
tree | 3e0dde3bca4f1f51dad42d8c85ad9cb624aab1fa /lfunc.h | |
parent | ac71a0891d8571816ce32b5c2c1fd97942decf71 (diff) | |
download | lua-334ba8132bd0471ffe2a9964b577d3ae89ec490a.tar.gz lua-334ba8132bd0471ffe2a9964b577d3ae89ec490a.tar.bz2 lua-334ba8132bd0471ffe2a9964b577d3ae89ec490a.zip |
cleaner way to remark open upvalues
Diffstat (limited to 'lfunc.h')
-rw-r--r-- | lfunc.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lfunc.h,v 1.23 2003/11/24 18:50:36 roberto Exp roberto $ | 2 | ** $Id: lfunc.h,v 2.1 2003/12/10 12:13:36 roberto Exp $ |
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 | */ |
@@ -26,6 +26,7 @@ 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); |
27 | void luaF_freeproto (lua_State *L, Proto *f); | 27 | void luaF_freeproto (lua_State *L, Proto *f); |
28 | void luaF_freeclosure (lua_State *L, Closure *c); | 28 | void luaF_freeclosure (lua_State *L, Closure *c); |
29 | void luaF_freeupval (lua_State *L, UpVal *uv); | ||
29 | 30 | ||
30 | const char *luaF_getlocalname (const Proto *func, int local_number, int pc); | 31 | const char *luaF_getlocalname (const Proto *func, int local_number, int pc); |
31 | 32 | ||