소스 검색

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

Roberto Ierusalimschy 23 년 전
부모
커밋
0056ed4135
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      ltm.c

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