aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-24 17:18:38 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-24 17:18:38 -0300
commitfdfd5b44ee48a5497181d0bcaa89586b12a48eb4 (patch)
tree9931e21b52c08b60ae76f1a787b2b112d4dcb5ce /ltm.h
parent1a4c428d6d2c9c9a35ceb7d4fb054f83c89f98e5 (diff)
downloadlua-fdfd5b44ee48a5497181d0bcaa89586b12a48eb4.tar.gz
lua-fdfd5b44ee48a5497181d0bcaa89586b12a48eb4.tar.bz2
lua-fdfd5b44ee48a5497181d0bcaa89586b12a48eb4.zip
TM_GETTABLE/TM_SETTABLE don't need fast access anymore
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,