diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-24 17:18:38 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-24 17:18:38 -0300 |
commit | fdfd5b44ee48a5497181d0bcaa89586b12a48eb4 (patch) | |
tree | 9931e21b52c08b60ae76f1a787b2b112d4dcb5ce /ltm.c | |
parent | 1a4c428d6d2c9c9a35ceb7d4fb054f83c89f98e5 (diff) | |
download | lua-fdfd5b44ee48a5497181d0bcaa89586b12a48eb4.tar.gz lua-fdfd5b44ee48a5497181d0bcaa89586b12a48eb4.tar.bz2 lua-fdfd5b44ee48a5497181d0bcaa89586b12a48eb4.zip |
TM_GETTABLE/TM_SETTABLE don't need fast access anymore
Diffstat (limited to 'ltm.c')
-rw-r--r-- | ltm.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.c,v 1.94 2002/06/12 14:51:31 roberto Exp roberto $ | 2 | ** $Id: ltm.c,v 1.95 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 | */ |
@@ -25,8 +25,9 @@ const char *const luaT_typenames[] = { | |||
25 | 25 | ||
26 | void luaT_init (lua_State *L) { | 26 | void luaT_init (lua_State *L) { |
27 | static const char *const luaT_eventname[] = { /* ORDER TM */ | 27 | static const char *const luaT_eventname[] = { /* ORDER TM */ |
28 | "__gettable", "__settable", "__index", "__newindex", | 28 | "__index", "__newindex", |
29 | "__gc", "__eq", "__weakmode", | 29 | "__gc", "__eq", "__weakmode", |
30 | "__gettable", "__settable", | ||
30 | "__add", "__sub", "__mul", "__div", | 31 | "__add", "__sub", "__mul", "__div", |
31 | "__pow", "__unm", "__lt", "__le", | 32 | "__pow", "__unm", "__lt", "__le", |
32 | "__concat", "__call" | 33 | "__concat", "__call" |