aboutsummaryrefslogtreecommitdiff
path: root/lfunc.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-06-19 15:27:20 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-06-19 15:27:20 -0300
commit89b56e7d84d84de58fcc9d540c2003c6c2f8c134 (patch)
tree85ba9c3aa3cdb5ff57fd4f82bf322fb2e75e7292 /lfunc.h
parent14929f5764a7990dfb62c8792cfdfe03c061da21 (diff)
downloadlua-89b56e7d84d84de58fcc9d540c2003c6c2f8c134.tar.gz
lua-89b56e7d84d84de58fcc9d540c2003c6c2f8c134.tar.bz2
lua-89b56e7d84d84de58fcc9d540c2003c6c2f8c134.zip
more precision between closure types ('LClosure' x 'CClosure')
Diffstat (limited to 'lfunc.h')
-rw-r--r--lfunc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lfunc.h b/lfunc.h
index 3ca72075..5951f9ea 100644
--- a/lfunc.h
+++ b/lfunc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lfunc.h,v 2.12 2014/02/15 13:12:01 roberto Exp roberto $ 2** $Id: lfunc.h,v 2.13 2014/02/18 13:39:37 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*/
@@ -41,8 +41,8 @@ struct UpVal {
41 41
42 42
43LUAI_FUNC Proto *luaF_newproto (lua_State *L); 43LUAI_FUNC Proto *luaF_newproto (lua_State *L);
44LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems); 44LUAI_FUNC CClosure *luaF_newCclosure (lua_State *L, int nelems);
45LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems); 45LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nelems);
46LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl); 46LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl);
47LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level); 47LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
48LUAI_FUNC void luaF_close (lua_State *L, StkId level); 48LUAI_FUNC void luaF_close (lua_State *L, StkId level);