diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-09-19 17:12:47 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-09-19 17:12:47 -0300 |
commit | e8f35fc4ff01c09b3529e25caeca047e3e1e3517 (patch) | |
tree | dbe5bdbdb9a39343789f057a38a3873420a06d23 /ltm.c | |
parent | 6fb0fd506367d70fb83a7885441fc5bd499e937a (diff) | |
download | lua-e8f35fc4ff01c09b3529e25caeca047e3e1e3517.tar.gz lua-e8f35fc4ff01c09b3529e25caeca047e3e1e3517.tar.bz2 lua-e8f35fc4ff01c09b3529e25caeca047e3e1e3517.zip |
unification of __index & __gettable (and __newindex & __settable)
Diffstat (limited to 'ltm.c')
-rw-r--r-- | ltm.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.c,v 1.100 2002/08/06 17:06:56 roberto Exp roberto $ | 2 | ** $Id: ltm.c,v 1.101 2002/08/30 19:09:21 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 | */ |
@@ -27,7 +27,6 @@ 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 | "__index", "__newindex", | 28 | "__index", "__newindex", |
29 | "__gc", "__eq", | 29 | "__gc", "__eq", |
30 | "__gettable", "__settable", | ||
31 | "__add", "__sub", "__mul", "__div", | 30 | "__add", "__sub", "__mul", "__div", |
32 | "__pow", "__unm", "__lt", "__le", | 31 | "__pow", "__unm", "__lt", "__le", |
33 | "__concat", "__call" | 32 | "__concat", "__call" |