diff options
Diffstat (limited to 'lobject.c')
-rw-r--r-- | lobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.c,v 1.40 2000/06/08 17:48:31 roberto Exp roberto $ | 2 | ** $Id: lobject.c,v 1.41 2000/06/12 13:52:05 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 | */ |
@@ -16,7 +16,7 @@ | |||
16 | 16 | ||
17 | const char *const luaO_typenames[] = { /* ORDER LUA_T */ | 17 | const char *const luaO_typenames[] = { /* ORDER LUA_T */ |
18 | "userdata", "number", "string", "table", "function", "function", "nil", | 18 | "userdata", "number", "string", "table", "function", "function", "nil", |
19 | "function", "function", "line" | 19 | "function", "function" |
20 | }; | 20 | }; |
21 | 21 | ||
22 | 22 | ||