aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ltm.h b/ltm.h
index 36577531..b0d6439a 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 1.34 2002/06/12 14:51:31 roberto Exp roberto $ 2** $Id: ltm.h,v 1.35 2002/06/13 13:39:55 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*/
@@ -15,13 +15,13 @@
15* grep "ORDER TM" 15* grep "ORDER TM"
16*/ 16*/
17typedef enum { 17typedef enum {
18 TM_GETTABLE = 0,
19 TM_SETTABLE,
20 TM_INDEX, 18 TM_INDEX,
21 TM_NEWINDEX, 19 TM_NEWINDEX,
22 TM_GC, 20 TM_GC,
23 TM_EQ, 21 TM_EQ,
24 TM_WEAKMODE, /* last tag method with `fast' access */ 22 TM_WEAKMODE, /* last tag method with `fast' access */
23 TM_GETTABLE,
24 TM_SETTABLE,
25 TM_ADD, 25 TM_ADD,
26 TM_SUB, 26 TM_SUB,
27 TM_MUL, 27 TM_MUL,