From 4d4e6f07c022f94999c52fb593a20fce85c5092a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 22 Feb 2000 16:12:46 -0200 Subject: all order operators use a single tag method (<) --- lvm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lvm.h') diff --git a/lvm.h b/lvm.h index 682364a7..14b83bb7 100644 --- a/lvm.h +++ b/lvm.h @@ -1,5 +1,5 @@ /* -** $Id: lvm.h,v 1.14 2000/01/19 16:50:30 roberto Exp roberto $ +** $Id: lvm.h,v 1.15 2000/01/24 20:14:07 roberto Exp roberto $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -28,6 +28,6 @@ void luaV_getglobal (lua_State *L, GlobalVar *gv, StkId top); void luaV_setglobal (lua_State *L, GlobalVar *gv, StkId top); StkId luaV_execute (lua_State *L, const Closure *cl, const TProtoFunc *tf, StkId base); void luaV_closure (lua_State *L, int nelems); -void luaV_comparison (lua_State *L); +int luaV_lessthan (lua_State *L, TObject *l, TObject *r); #endif -- cgit v1.2.3-55-g6feb