From a948054a1951cd526c732d6a0e16d99cae837d49 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 16 Dec 2013 17:06:52 -0200 Subject: new order for binary operations (grouping them by type of result) --- ltm.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ltm.c') diff --git a/ltm.c b/ltm.c index 62c1430c..8eb504d1 100644 --- a/ltm.c +++ b/ltm.c @@ -1,5 +1,5 @@ /* -** $Id: ltm.c,v 2.21 2013/08/21 20:09:51 roberto Exp roberto $ +** $Id: ltm.c,v 2.22 2013/08/27 18:53:35 roberto Exp roberto $ ** Tag methods ** See Copyright Notice in lua.h */ @@ -36,8 +36,9 @@ void luaT_init (lua_State *L) { static const char *const luaT_eventname[] = { /* ORDER TM */ "__index", "__newindex", "__gc", "__mode", "__len", "__eq", - "__add", "__sub", "__mul", "__div", "__idiv", "__mod", - "__pow", "__unm", "__lt", "__le", + "__add", "__sub", "__mul", "__mod", "__pow", + "__div", "__idiv", + "__unm", "__lt", "__le", "__concat", "__call" }; int i; -- cgit v1.2.3-55-g6feb