aboutsummaryrefslogtreecommitdiff
path: root/ltm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-05 15:54:31 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-05 15:54:31 -0300
commit237969724f54eeefee057ae382237c8db54af44e (patch)
treefc4abd54f7cac0749023f1c021e7d86e3ee4f273 /ltm.c
parentf438d00ef31e3aea54023602f529b68834ffb80a (diff)
downloadlua-237969724f54eeefee057ae382237c8db54af44e.tar.gz
lua-237969724f54eeefee057ae382237c8db54af44e.tar.bz2
lua-237969724f54eeefee057ae382237c8db54af44e.zip
support for `light' userdata + simpler support for `boxed' udata
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 e53f49cb..5a4c72ac 100644
--- a/ltm.c
+++ b/ltm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.c,v 1.87 2002/02/14 21:40:29 roberto Exp roberto $ 2** $Id: ltm.c,v 1.88 2002/03/18 20:24:14 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*/
@@ -19,7 +19,8 @@
19 19
20 20
21const char *const luaT_typenames[] = { 21const char *const luaT_typenames[] = {
22 "nil", "number", "string", "boolean", "table", "userdata", "function" 22 "nil", "number", "string", "boolean", "table",
23 "userdata", "userdata", "function"
23}; 24};
24 25
25 26