aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-04-29 13:56:50 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-04-29 13:56:50 -0300
commitb4be5075784bcc8fed974bda4005425a9ccec1ba (patch)
tree4b1ac6f23e4a46310f1ed6707c2f733edff6239c /ltm.h
parent360587f31959b9a112b13000b3c7ee8ae51cf146 (diff)
downloadlua-b4be5075784bcc8fed974bda4005425a9ccec1ba.tar.gz
lua-b4be5075784bcc8fed974bda4005425a9ccec1ba.tar.bz2
lua-b4be5075784bcc8fed974bda4005425a9ccec1ba.zip
new function 'luaT_trybinTM'
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ltm.h b/ltm.h
index 8f088528..053dc145 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 2.14 2013/04/25 16:07:52 roberto Exp roberto $ 2** $Id: ltm.h,v 2.15 2013/04/26 13:07:53 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*/
@@ -59,6 +59,8 @@ LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1,
59 const TValue *p2, TValue *p3, int hasres); 59 const TValue *p2, TValue *p3, int hasres);
60LUAI_FUNC int luaT_callbinTM (lua_State *L, const TValue *p1, const TValue *p2, 60LUAI_FUNC int luaT_callbinTM (lua_State *L, const TValue *p1, const TValue *p2,
61 StkId res, TMS event); 61 StkId res, TMS event);
62LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2,
63 StkId res, TMS event);
62LUAI_FUNC const TValue *luaT_getequalTM (lua_State *L, Table *mt1, Table *mt2); 64LUAI_FUNC const TValue *luaT_getequalTM (lua_State *L, Table *mt1, Table *mt2);
63LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1, 65LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1,
64 const TValue *p2, TMS event); 66 const TValue *p2, TMS event);