ICU-5247 update data from CLDR 1.4 beta
X-SVN-Rev: 19804
This commit is contained in:
parent
105ca72591
commit
9fa73dc2dd
@ -780,7 +780,8 @@ findStringSetMismatch(const char *currLoc, const UChar *string, int32_t langSize
|
||||
|
||||
for (strIdx = 0; strIdx < langSize; strIdx++) {
|
||||
if (!uset_contains(exemplarSet, string[strIdx])
|
||||
&& string[strIdx] != 0x0020 && string[strIdx] != 0x00A0 && string[strIdx] != 0x002e && string[strIdx] != 0x002c && string[strIdx] != 0x002d && string[strIdx] != 0x0027) {
|
||||
&& string[strIdx] != 0x0020 && string[strIdx] != 0x00A0 && string[strIdx] != 0x002e && string[strIdx] != 0x002c && string[strIdx] != 0x002d && string[strIdx] != 0x0027
|
||||
&& string[strIdx] != 0x200C && string[strIdx] != 0x200D) {
|
||||
if (!ignoreNumbers || (ignoreNumbers && (string[strIdx] < 0x30 || string[strIdx] > 0x39))) {
|
||||
uset_close(exemplarSet);
|
||||
return strIdx;
|
||||
|
Loading…
Reference in New Issue
Block a user