From 413fc7334bf8ceaea71417d73edef15c99d3a793 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 29 Nov 2001 18:22:22 -0200 Subject: new implementation for lua upvalues (sugested by E.T.): simpler and solves a bug for multi-stacks --- lfunc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lfunc.h') diff --git a/lfunc.h b/lfunc.h index 111e554c..f57df4c2 100644 --- a/lfunc.h +++ b/lfunc.h @@ -14,7 +14,7 @@ Proto *luaF_newproto (lua_State *L); Closure *luaF_newCclosure (lua_State *L, int nelems); Closure *luaF_newLclosure (lua_State *L, int nelems); -void luaF_LConlist (lua_State *L, Closure *cl); +UpVal *luaF_findupval (lua_State *L, StkId level); void luaF_close (lua_State *L, StkId level); void luaF_freeproto (lua_State *L, Proto *f); void luaF_freeclosure (lua_State *L, Closure *c); -- cgit v1.2.3-55-g6feb