aboutsummaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-06-29 12:06:44 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-06-29 12:06:44 -0300
commitf96497397addca22f22a6ba6eeabc906be43f16b (patch)
treeaf8d27b9af36dfe0b0b6e0f765ea90b95b110efc /lvm.h
parent5a1c8d8ef343bf0157851a4832c2c937b812b64f (diff)
downloadlua-f96497397addca22f22a6ba6eeabc906be43f16b.tar.gz
lua-f96497397addca22f22a6ba6eeabc906be43f16b.tar.bz2
lua-f96497397addca22f22a6ba6eeabc906be43f16b.zip
new type 'StackValue' for stack elements
(we may want to put extra info there in the future)
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 3cf1f869..7ac959af 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 2.43 2017/06/01 20:23:27 roberto Exp roberto $ 2** $Id: lvm.h,v 2.44 2017/06/09 19:16:41 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*/
@@ -93,7 +93,7 @@ LUAI_FUNC int luaV_tointeger (const TValue *obj, lua_Integer *p, int mode);
93LUAI_FUNC void luaV_finishget (lua_State *L, const TValue *t, TValue *key, 93LUAI_FUNC void luaV_finishget (lua_State *L, const TValue *t, TValue *key,
94 StkId val, const TValue *slot); 94 StkId val, const TValue *slot);
95LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key, 95LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key,
96 StkId val, const TValue *slot); 96 TValue *val, const TValue *slot);
97LUAI_FUNC void luaV_finishOp (lua_State *L); 97LUAI_FUNC void luaV_finishOp (lua_State *L);
98LUAI_FUNC void luaV_execute (lua_State *L); 98LUAI_FUNC void luaV_execute (lua_State *L);
99LUAI_FUNC void luaV_concat (lua_State *L, int total); 99LUAI_FUNC void luaV_concat (lua_State *L, int total);