Explorar o código

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

Roberto Ierusalimschy %!s(int64=23) %!d(string=hai) anos
pai
achega
0056ed4135
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      ltm.c

+ 1 - 1
ltm.c

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