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.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ltm.h') diff --git a/ltm.h b/ltm.h index 053dc145..196825b9 100644 --- a/ltm.h +++ b/ltm.h @@ -1,5 +1,5 @@ /* -** $Id: ltm.h,v 2.15 2013/04/26 13:07:53 roberto Exp roberto $ +** $Id: ltm.h,v 2.16 2013/04/29 16:56:50 roberto Exp roberto $ ** Tag methods ** See Copyright Notice in lua.h */ @@ -13,7 +13,7 @@ /* * WARNING: if you change the order of this enumeration, -* grep "ORDER TM" +* grep "ORDER TM" and "ORDER OP" */ typedef enum { TM_INDEX, @@ -25,10 +25,10 @@ typedef enum { TM_ADD, TM_SUB, TM_MUL, - TM_DIV, - TM_IDIV, TM_MOD, TM_POW, + TM_DIV, + TM_IDIV, TM_UNM, TM_LT, TM_LE, -- cgit v1.2.3-55-g6feb