Added a few more Unicode digits from Unicode version 4.1.

This commit is contained in:
Alexandre Julliard 2005-11-18 12:15:59 +00:00
parent 970fcb1bf9
commit ba2cb7c97b
1 changed files with 2 additions and 1 deletions

View File

@ -1793,7 +1793,8 @@ static void test_FoldStringW(void)
ok(dst[0] == ch || strchrW(outOfSequenceDigits, ch) ||
/* Wine (correctly) maps all Unicode 4.0+ digits */
isdigitW(ch) || (ch >= 0x24F5 && ch <= 0x24FD) || ch == 0x24FF,
isdigitW(ch) || (ch >= 0x24F5 && ch <= 0x24FD) || ch == 0x24FF ||
(ch >= 0x1369 && ch <= 0x1371),
"MAP_FOLDDIGITS: ch %d 0x%04x Expected unchanged got %d\n", ch, ch, dst[0]);
}