aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ltm.h b/ltm.h
index 053dc145..196825b9 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 2.15 2013/04/26 13:07:53 roberto Exp roberto $ 2** $Id: ltm.h,v 2.16 2013/04/29 16:56:50 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*/
@@ -13,7 +13,7 @@
13 13
14/* 14/*
15* WARNING: if you change the order of this enumeration, 15* WARNING: if you change the order of this enumeration,
16* grep "ORDER TM" 16* grep "ORDER TM" and "ORDER OP"
17*/ 17*/
18typedef enum { 18typedef enum {
19 TM_INDEX, 19 TM_INDEX,
@@ -25,10 +25,10 @@ typedef enum {
25 TM_ADD, 25 TM_ADD,
26 TM_SUB, 26 TM_SUB,
27 TM_MUL, 27 TM_MUL,
28 TM_DIV,
29 TM_IDIV,
30 TM_MOD, 28 TM_MOD,
31 TM_POW, 29 TM_POW,
30 TM_DIV,
31 TM_IDIV,
32 TM_UNM, 32 TM_UNM,
33 TM_LT, 33 TM_LT,
34 TM_LE, 34 TM_LE,