diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-27 17:35:40 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-27 17:35:40 -0300 |
commit | 46c471d7e97292d923721655683affd7e8b314de (patch) | |
tree | c9ae53cc94b1cca209fd5af7f594d355d6c111a9 /ltm.c | |
parent | 859ecf36b6f96a5a0961f09c00cd98088081384c (diff) | |
download | lua-46c471d7e97292d923721655683affd7e8b314de.tar.gz lua-46c471d7e97292d923721655683affd7e8b314de.tar.bz2 lua-46c471d7e97292d923721655683affd7e8b314de.zip |
new `__newindex' eventfield
Diffstat (limited to 'ltm.c')
-rw-r--r-- | ltm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.c,v 1.90 2002/04/30 13:01:48 roberto Exp roberto $ | 2 | ** $Id: ltm.c,v 1.91 2002/05/20 19:51:06 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 | */ |
@@ -26,7 +26,7 @@ const char *const luaT_typenames[] = { | |||
26 | 26 | ||
27 | void luaT_init (lua_State *L) { | 27 | void luaT_init (lua_State *L) { |
28 | static const char *const luaT_eventname[] = { /* ORDER TM */ | 28 | static const char *const luaT_eventname[] = { /* ORDER TM */ |
29 | "__gettable", "__settable", "__index", | 29 | "__gettable", "__settable", "__index", "__newindex", |
30 | "__gc", "__weakmode", | 30 | "__gc", "__weakmode", |
31 | "__add", "__sub", "__mul", "__div", | 31 | "__add", "__sub", "__mul", "__div", |
32 | "__pow", "__unm", "__lt", "__concat", | 32 | "__pow", "__unm", "__lt", "__concat", |