mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-19 03:34:38 +00:00
ICU-6143 added check for TELUGU character in getUnicodeSet
X-SVN-Rev: 23695
This commit is contained in:
parent
277f051c40
commit
f69d550e36
1 changed files with 3 additions and 1 deletions
|
@ -1402,8 +1402,10 @@ _ISCIIGetUnicodeSet(const UConverter *cnv,
|
|||
for (script = DEVANAGARI; script <= MALAYALAM; script++) {
|
||||
mask = (uint8_t)(lookupInitialData[script].maskEnum);
|
||||
for (idx = 0; idx < DELTA; idx++) {
|
||||
if (validityTable[idx] & mask) {
|
||||
//added check for TELUGU character
|
||||
if ((validityTable[idx] & mask) || (script==TELUGU && idx==0x31)) {
|
||||
sa->add(sa->set, idx + (script * DELTA) + INDIC_BLOCK_BEGIN);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue