From 0056ed413519c6767b6b6f502cbc1a5254f41eda Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 14 Feb 2002 19:40:29 -0200 Subject: better(?) order for types (nil == 0) --- ltm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ltm.c b/ltm.c index 5cc0a744..a9faf7a2 100644 --- a/ltm.c +++ b/ltm.c @@ -19,7 +19,7 @@ const char *const luaT_typenames[] = { - "userdata", "nil", "number", "boolean", "string", "table", "function" + "nil", "number", "string", "boolean", "table", "userdata", "function" }; -- cgit v1.2.3-55-g6feb