diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-29 11:02:17 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-29 11:02:17 -0200 |
commit | c766e4103db888063c4f928747afd6eb448e306f (patch) | |
tree | 9d6f8a73487283054f0c07f315b0bdd3eaa9657e /lvm.h | |
parent | 36aecd4548e5cafc3b6b7ab9f6045db866cf7d9a (diff) | |
download | lua-c766e4103db888063c4f928747afd6eb448e306f.tar.gz lua-c766e4103db888063c4f928747afd6eb448e306f.tar.bz2 lua-c766e4103db888063c4f928747afd6eb448e306f.zip |
'luaV_execute' gets call info as extra argument (it is always
available on call sites)
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 2.46 2017/07/07 16:34:32 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 2.47 2017/11/08 14:50:23 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -112,7 +112,7 @@ LUAI_FUNC void luaV_finishget (lua_State *L, const TValue *t, TValue *key, | |||
112 | LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key, | 112 | LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key, |
113 | TValue *val, const TValue *slot); | 113 | TValue *val, const TValue *slot); |
114 | LUAI_FUNC void luaV_finishOp (lua_State *L); | 114 | LUAI_FUNC void luaV_finishOp (lua_State *L); |
115 | LUAI_FUNC void luaV_execute (lua_State *L); | 115 | LUAI_FUNC void luaV_execute (lua_State *L, CallInfo *ci); |
116 | LUAI_FUNC void luaV_concat (lua_State *L, int total); | 116 | LUAI_FUNC void luaV_concat (lua_State *L, int total); |
117 | LUAI_FUNC lua_Integer luaV_div (lua_State *L, lua_Integer x, lua_Integer y); | 117 | LUAI_FUNC lua_Integer luaV_div (lua_State *L, lua_Integer x, lua_Integer y); |
118 | LUAI_FUNC lua_Integer luaV_mod (lua_State *L, lua_Integer x, lua_Integer y); | 118 | LUAI_FUNC lua_Integer luaV_mod (lua_State *L, lua_Integer x, lua_Integer y); |