summaryrefslogtreecommitdiff
path: root/ltm.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltm.c')
-rw-r--r--ltm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ltm.c b/ltm.c
index 1d1e5d1a..e411606d 100644
--- a/ltm.c
+++ b/ltm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.c,v 2.11 2010/01/13 16:18:25 roberto Exp roberto $ 2** $Id: ltm.c,v 2.12 2010/04/13 20:48:12 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,11 +21,11 @@
21 21
22static const char udatatypename[] = "userdata"; 22static const char udatatypename[] = "userdata";
23 23
24LUAI_DDEF const char *const luaT_typenames_[] = { 24LUAI_DDEF const char *const luaT_typenames_[LUA_TOTALTAGS] = {
25 "no value", 25 "no value",
26 "nil", "boolean", udatatypename, "number", 26 "nil", "boolean", udatatypename, "number",
27 "string", "table", "function", udatatypename, "thread", 27 "string", "table", "function", udatatypename, "thread",
28 "proto", "upval" 28 "proto", "upval" /* these last two cases are used for tests only */
29}; 29};
30 30
31 31