aboutsummaryrefslogtreecommitdiff
path: root/ltm.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltm.c')
-rw-r--r--ltm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ltm.c b/ltm.c
index ea402aac..25bebc82 100644
--- a/ltm.c
+++ b/ltm.c
@@ -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
26void luaT_init (lua_State *L) { 26void 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"