diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-06-10 15:53:18 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-06-10 15:53:18 -0300 |
commit | 1a3656e56eb1c873a4d74661eb44c96c07d662c1 (patch) | |
tree | b5622ff8a45cc79a982b06540ea0df8427decca0 /ltm.h | |
parent | 542b6cfc02d57e66db7afc23a1d8350ae189e3c6 (diff) | |
download | lua-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.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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); |
68 | LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2, | 68 | LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2, |
69 | StkId res, TMS event); | 69 | StkId res, TMS event); |
70 | LUAI_FUNC const TValue *luaT_getequalTM (lua_State *L, Table *mt1, Table *mt2); | ||
71 | LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1, | 70 | LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1, |
72 | const TValue *p2, TMS event); | 71 | const TValue *p2, TMS event); |
73 | 72 | ||