From 864c96f36ce8410b03652b1cb9800e4b3c76bcf7 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 13 Jun 2002 10:39:55 -0300 Subject: new fallback for equality `__eq' --- lua.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 2b2082a4..891a16c3 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.137 2002/06/05 12:34:19 roberto Exp roberto $ +** $Id: lua.h,v 1.138 2002/06/06 12:40:22 roberto Exp roberto $ ** Lua - An Extensible Extension Language ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil ** http://www.lua.org mailto:info@lua.org @@ -130,6 +130,7 @@ LUA_API int lua_type (lua_State *L, int index); LUA_API const char *lua_typename (lua_State *L, int type); LUA_API int lua_equal (lua_State *L, int index1, int index2); +LUA_API int lua_rawequal (lua_State *L, int index1, int index2); LUA_API int lua_lessthan (lua_State *L, int index1, int index2); LUA_API lua_Number lua_tonumber (lua_State *L, int index); -- cgit v1.2.3-55-g6feb