From 5016f43aa439662ca35a5d78e820c617c517f60a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 7 Aug 2002 16:22:39 -0300 Subject: (much) cleaner way to control function states --- lvm.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'lvm.h') diff --git a/lvm.h b/lvm.h index c1b2c312..17cbfb8c 100644 --- a/lvm.h +++ b/lvm.h @@ -1,5 +1,5 @@ /* -** $Id: lvm.h,v 1.44 2002/07/05 18:27:39 roberto Exp $ +** $Id: lvm.h,v 1.45 2002/08/05 17:36:24 roberto Exp roberto $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -22,13 +22,6 @@ (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2)) -/* -** dummy addrees, to mark Lua functions calling other Lua functions (and -** therefore without a valid `pc' -*/ -extern Instruction const *luaV_callingmark; - - int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r); int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2); const TObject *luaV_tonumber (const TObject *obj, TObject *n); -- cgit v1.2.3-55-g6feb