lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 0056ed413519c6767b6b6f502cbc1a5254f41eda
parent e01f5e680951a66bd67a22eeed1d9e05ab30b9f2
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu, 14 Feb 2002 19:40:07 -0200

better(?) order for types (nil == 0)

Diffstat:
Mltm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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" };