diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-06-19 15:27:20 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-06-19 15:27:20 -0300 |
commit | 89b56e7d84d84de58fcc9d540c2003c6c2f8c134 (patch) | |
tree | 85ba9c3aa3cdb5ff57fd4f82bf322fb2e75e7292 /lfunc.h | |
parent | 14929f5764a7990dfb62c8792cfdfe03c061da21 (diff) | |
download | lua-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.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | ||
43 | LUAI_FUNC Proto *luaF_newproto (lua_State *L); | 43 | LUAI_FUNC Proto *luaF_newproto (lua_State *L); |
44 | LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems); | 44 | LUAI_FUNC CClosure *luaF_newCclosure (lua_State *L, int nelems); |
45 | LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems); | 45 | LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nelems); |
46 | LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl); | 46 | LUAI_FUNC void luaF_initupvals (lua_State *L, LClosure *cl); |
47 | LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level); | 47 | LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level); |
48 | LUAI_FUNC void luaF_close (lua_State *L, StkId level); | 48 | LUAI_FUNC void luaF_close (lua_State *L, StkId level); |