git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3249 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
erik.corry@gmail.com 2009-11-09 13:21:14 +00:00
parent a29255e334
commit 9065114928

View File

@ -4077,7 +4077,7 @@ static void AddUncanonicals(ZoneList<CharacterRange>* ranges,
int length = uncanonicalize.get(i, '\0', chars);
for (int j = 0; j < length; j++) {
uc32 chr = chars[j];
if (chr != i && chr < bottom || chr > top) {
if (chr != i && (chr < bottom || chr > top)) {
characters->Add(chr);
}
}