aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-10-16 18:07:40 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-10-16 18:07:40 -0200
commit52d5e8032ce375601a52c0e6fa9b6b72c5327c79 (patch)
treef84ea58ff29a7dac18125e87a4f6a4185682ce42 /lobject.c
parent19c178fa14b7b641637c7be480394ab511a16a13 (diff)
downloadlua-52d5e8032ce375601a52c0e6fa9b6b72c5327c79.tar.gz
lua-52d5e8032ce375601a52c0e6fa9b6b72c5327c79.tar.bz2
lua-52d5e8032ce375601a52c0e6fa9b6b72c5327c79.zip
better identification of types which are tags
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lobject.c b/lobject.c
index e06e89e5..f8e942b8 100644
--- a/lobject.c
+++ b/lobject.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.c,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ 2** $Id: lobject.c,v 1.2 1997/09/26 16:46:20 roberto Exp roberto $
3** Some generic functions over Lua objects 3** Some generic functions over Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -12,9 +12,8 @@
12 12
13 13
14char *luaO_typenames[] = { /* ORDER LUA_T */ 14char *luaO_typenames[] = { /* ORDER LUA_T */
15 "userdata", "line", "cmark", "mark", "function", "function", 15 "userdata", "number", "string", "table", "function", "function",
16 "prototype", "table", "string", "number", "nil", 16 "nil", "prototype", "mark", "cmark", "line", NULL
17 NULL
18}; 17};
19 18
20 19