summaryrefslogtreecommitdiff
path: root/lfunc.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-06-04 10:06:15 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-06-04 10:06:15 -0300
commit545f43065ff8fa20e5f8254e6270d00694b847dd (patch)
tree22660d6087cd7c5b342652d6e3ee555df58fdabd /lfunc.h
parent3819c30e5553b98ceb7d8d2da20c9da25cbdc62a (diff)
downloadlua-github-545f43065ff8fa20e5f8254e6270d00694b847dd.tar.gz
'luaF_newLclosure' gets prototype of new closure as argument
Diffstat (limited to 'lfunc.h')
-rw-r--r--lfunc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lfunc.h b/lfunc.h
index 0d52058d..315ffe1d 100644
--- a/lfunc.h
+++ b/lfunc.h
@@ -1,5 +1,5 @@
/*
-** $Id: lfunc.h,v 2.4 2005/04/25 19:24:10 roberto Exp roberto $
+** $Id: lfunc.h,v 2.5 2010/03/26 20:58:11 roberto Exp roberto $
** Auxiliary functions to manipulate prototypes and closures
** See Copyright Notice in lua.h
*/
@@ -20,7 +20,7 @@
LUAI_FUNC Proto *luaF_newproto (lua_State *L);
LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems);
-LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems);
+LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, Proto *p);
LUAI_FUNC UpVal *luaF_newupval (lua_State *L);
LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
LUAI_FUNC void luaF_close (lua_State *L, StkId level);