summaryrefslogtreecommitdiff
path: root/src/ltm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ltm.h')
-rw-r--r--src/ltm.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/ltm.h b/src/ltm.h
index 206823ef..a84c798e 100644
--- a/src/ltm.h
+++ b/src/ltm.h
@@ -1,5 +1,5 @@
/*
-** $Id: ltm.h,v 2.16 2013/04/29 16:56:50 roberto Exp $
+** $Id: ltm.h,v 2.19 2013/12/30 20:47:58 roberto Exp $
** 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,11 +25,17 @@ typedef enum {
TM_ADD,
TM_SUB,
TM_MUL,
- TM_DIV,
- TM_IDIV,
TM_MOD,
TM_POW,
+ TM_DIV,
+ TM_IDIV,
+ TM_BAND,
+ TM_BOR,
+ TM_BXOR,
+ TM_SHL,
+ TM_SHR,
TM_UNM,
+ TM_BNOT,
TM_LT,
TM_LE,
TM_CONCAT,