1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00

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 -1
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"
};