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

This commit is contained in:
Roberto Ierusalimschy 2002-02-14 19:40:29 -02:00
parent e01f5e6809
commit 0056ed4135
1 changed files with 1 additions and 1 deletions

2
ltm.c
View File

@ -19,7 +19,7 @@
const char *const luaT_typenames[] = {
"userdata", "nil", "number", "boolean", "string", "table", "function"
"nil", "number", "string", "boolean", "table", "userdata", "function"
};