aboutsummaryrefslogtreecommitdiff
path: root/lfunc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lfunc.h')
-rw-r--r--lfunc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lfunc.h b/lfunc.h
index c6e35586..fb542716 100644
--- a/lfunc.h
+++ b/lfunc.h
@@ -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);
26void luaF_close (lua_State *L, StkId level); 26void luaF_close (lua_State *L, StkId level);
27void luaF_freeproto (lua_State *L, Proto *f); 27void luaF_freeproto (lua_State *L, Proto *f);
28void luaF_freeclosure (lua_State *L, Closure *c); 28void luaF_freeclosure (lua_State *L, Closure *c);
29void luaF_freeupval (lua_State *L, UpVal *uv);
29 30
30const char *luaF_getlocalname (const Proto *func, int local_number, int pc); 31const char *luaF_getlocalname (const Proto *func, int local_number, int pc);
31 32