From fa26d294aef136aa4ec48c23b4b87b853df0e3da Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 16 Jul 2003 17:49:02 -0300 Subject: new way to control `pc' of running functions --- lvm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lvm.h') diff --git a/lvm.h b/lvm.h index 667b25bb..b2d9f8d5 100644 --- a/lvm.h +++ b/lvm.h @@ -1,5 +1,5 @@ /* -** $Id: lvm.h,v 1.47 2002/11/14 16:16:21 roberto Exp roberto $ +** $Id: lvm.h,v 1.48 2003/05/05 18:39:57 roberto Exp $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -28,7 +28,7 @@ const TObject *luaV_tonumber (const TObject *obj, TObject *n); int luaV_tostring (lua_State *L, StkId obj); void luaV_gettable (lua_State *L, const TObject *t, TObject *key, StkId val); void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val); -StkId luaV_execute (lua_State *L); +StkId luaV_execute (lua_State *L, int nexeccalls); void luaV_concat (lua_State *L, int total, int last); #endif -- cgit v1.2.3-55-g6feb