From 52d5e8032ce375601a52c0e6fa9b6b72c5327c79 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 16 Oct 1997 18:07:40 -0200 Subject: better identification of types which are tags --- lobject.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lobject.c') diff --git a/lobject.c b/lobject.c index e06e89e5..f8e942b8 100644 --- a/lobject.c +++ b/lobject.c @@ -1,5 +1,5 @@ /* -** $Id: lobject.c,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ +** $Id: lobject.c,v 1.2 1997/09/26 16:46:20 roberto Exp roberto $ ** Some generic functions over Lua objects ** See Copyright Notice in lua.h */ @@ -12,9 +12,8 @@ char *luaO_typenames[] = { /* ORDER LUA_T */ - "userdata", "line", "cmark", "mark", "function", "function", - "prototype", "table", "string", "number", "nil", - NULL + "userdata", "number", "string", "table", "function", "function", + "nil", "prototype", "mark", "cmark", "line", NULL }; -- cgit v1.2.3-55-g6feb