diff options
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.107 2003/12/01 18:22:56 roberto Exp roberto $ | 2 | ** $Id: ltm.c,v 2.1 2003/12/10 12:13:36 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 | */ |
@@ -21,7 +21,8 @@ | |||
21 | 21 | ||
22 | const char *const luaT_typenames[] = { | 22 | const char *const luaT_typenames[] = { |
23 | "nil", "boolean", "userdata", "number", | 23 | "nil", "boolean", "userdata", "number", |
24 | "string", "table", "function", "userdata", "thread" | 24 | "string", "table", "function", "userdata", "thread", |
25 | "proto", "upval" | ||
25 | }; | 26 | }; |
26 | 27 | ||
27 | 28 | ||