From a53d9b66ca6247818acaf41e28cdf123082a272b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 25 Jan 2001 14:45:36 -0200 Subject: first implementation for type names --- lobject.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'lobject.c') diff --git a/lobject.c b/lobject.c index d709d442..a10dfeab 100644 --- a/lobject.c +++ b/lobject.c @@ -1,5 +1,5 @@ /* -** $Id: lobject.c,v 1.59 2001/01/19 13:20:30 roberto Exp roberto $ +** $Id: lobject.c,v 1.60 2001/01/24 15:45:33 roberto Exp roberto $ ** Some generic functions over Lua objects ** See Copyright Notice in lua.h */ @@ -22,12 +22,6 @@ const TObject luaO_nilobject = {LUA_TNIL, {NULL}}; -const char *const luaO_typenames[] = { - "userdata", "nil", "number", "string", "table", "function" -}; - - - /* ** returns smaller power of 2 larger than `n' (minimum is MINPOWER2) */ -- cgit v1.2.3-55-g6feb