aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
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