aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-06-10 15:53:18 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-06-10 15:53:18 -0300
commit1a3656e56eb1c873a4d74661eb44c96c07d662c1 (patch)
treeb5622ff8a45cc79a982b06540ea0df8427decca0 /ltm.h
parent542b6cfc02d57e66db7afc23a1d8350ae189e3c6 (diff)
downloadlua-1a3656e56eb1c873a4d74661eb44c96c07d662c1.tar.gz
lua-1a3656e56eb1c873a4d74661eb44c96c07d662c1.tar.bz2
lua-1a3656e56eb1c873a4d74661eb44c96c07d662c1.zip
more relaxed rules for __eq metamethod (more similar to other
operators)
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/ltm.h b/ltm.h
index a25247cc..8e0f1b88 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 2.18 2013/12/18 14:12:03 roberto Exp roberto $ 2** $Id: ltm.h,v 2.19 2013/12/30 20:47:58 roberto Exp roberto $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -67,7 +67,6 @@ LUAI_FUNC int luaT_callbinTM (lua_State *L, const TValue *p1, const TValue *p2,
67 StkId res, TMS event); 67 StkId res, TMS event);
68LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2, 68LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2,
69 StkId res, TMS event); 69 StkId res, TMS event);
70LUAI_FUNC const TValue *luaT_getequalTM (lua_State *L, Table *mt1, Table *mt2);
71LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1, 70LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1,
72 const TValue *p2, TMS event); 71 const TValue *p2, TMS event);
73 72