summaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-07-16 17:49:02 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-07-16 17:49:02 -0300
commitfa26d294aef136aa4ec48c23b4b87b853df0e3da (patch)
treef8ccce58fe28fbc116f082766eecf3a50812c82d /lvm.h
parent5a761e3a1519eae7264209db8257b040c77556aa (diff)
downloadlua-fa26d294aef136aa4ec48c23b4b87b853df0e3da.tar.gz
lua-fa26d294aef136aa4ec48c23b4b87b853df0e3da.tar.bz2
lua-fa26d294aef136aa4ec48c23b4b87b853df0e3da.zip
new way to control `pc' of running functions
Diffstat (limited to '')
-rw-r--r--lvm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lvm.h b/lvm.h
index 667b25bb..b2d9f8d5 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 1.47 2002/11/14 16:16:21 roberto Exp roberto $ 2** $Id: lvm.h,v 1.48 2003/05/05 18:39:57 roberto Exp $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -28,7 +28,7 @@ const TObject *luaV_tonumber (const TObject *obj, TObject *n);
28int luaV_tostring (lua_State *L, StkId obj); 28int luaV_tostring (lua_State *L, StkId obj);
29void luaV_gettable (lua_State *L, const TObject *t, TObject *key, StkId val); 29void luaV_gettable (lua_State *L, const TObject *t, TObject *key, StkId val);
30void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val); 30void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val);
31StkId luaV_execute (lua_State *L); 31StkId luaV_execute (lua_State *L, int nexeccalls);
32void luaV_concat (lua_State *L, int total, int last); 32void luaV_concat (lua_State *L, int total, int last);
33 33
34#endif 34#endif