1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00
This commit is contained in:
Roberto Ierusalimschy
2002-02-07 15:25:12 -02:00
parent 67bda7e136
commit 53aaee6ee6
+1 -1
View File
@@ -58,7 +58,7 @@ int luaO_equalObj (const TObject *t1, const TObject *t2) {
case LUA_TNIL:
return 1;
case LUA_TBOOLEAN:
return bvalue(t1) == bvalue(t2);
return bvalue(t1) == bvalue(t2); /* true must be 1 !! */
default: /* all other types are equal if pointers are equal */
return tsvalue(t1) == tsvalue(t2);
}