summaryrefslogtreecommitdiff
path: root/ltm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-02-16 16:09:52 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-02-16 16:09:52 -0300
commit2aaf7394ad17180565423ce360d5faffb60f4e4f (patch)
tree32caa2d7b0079b4bc9b0ac392d216c5094a6433d /ltm.c
parentb3ce4505296253e6da1fa780c23e7ed012efc88e (diff)
downloadlua-2aaf7394ad17180565423ce360d5faffb60f4e4f.tar.gz
lua-2aaf7394ad17180565423ce360d5faffb60f4e4f.tar.bz2
lua-2aaf7394ad17180565423ce360d5faffb60f4e4f.zip
more and better tools (assertions & inspectors) to check incremental GC
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 230fbba6..389cd7c4 100644
--- a/ltm.c
+++ b/ltm.c
@@ -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
22const char *const luaT_typenames[] = { 22const 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