aboutsummaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-29 11:02:17 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-29 11:02:17 -0200
commitc766e4103db888063c4f928747afd6eb448e306f (patch)
tree9d6f8a73487283054f0c07f315b0bdd3eaa9657e /lvm.h
parent36aecd4548e5cafc3b6b7ab9f6045db866cf7d9a (diff)
downloadlua-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lvm.h b/lvm.h
index c2e25574..0d2eed14 100644
--- a/lvm.h
+++ b/lvm.h
@@ -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,
112LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key, 112LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key,
113 TValue *val, const TValue *slot); 113 TValue *val, const TValue *slot);
114LUAI_FUNC void luaV_finishOp (lua_State *L); 114LUAI_FUNC void luaV_finishOp (lua_State *L);
115LUAI_FUNC void luaV_execute (lua_State *L); 115LUAI_FUNC void luaV_execute (lua_State *L, CallInfo *ci);
116LUAI_FUNC void luaV_concat (lua_State *L, int total); 116LUAI_FUNC void luaV_concat (lua_State *L, int total);
117LUAI_FUNC lua_Integer luaV_div (lua_State *L, lua_Integer x, lua_Integer y); 117LUAI_FUNC lua_Integer luaV_div (lua_State *L, lua_Integer x, lua_Integer y);
118LUAI_FUNC lua_Integer luaV_mod (lua_State *L, lua_Integer x, lua_Integer y); 118LUAI_FUNC lua_Integer luaV_mod (lua_State *L, lua_Integer x, lua_Integer y);