mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-2324 fix condition that caused a broken combiningTable - end-of-list marker on wrong word
X-SVN-Rev: 9919
This commit is contained in:
parent
5395623062
commit
aa4089194a
1 changed files with 1 additions and 1 deletions
|
@ -521,7 +521,7 @@ processCombining() {
|
|||
}
|
||||
|
||||
/* set a marker on the last final trail index in this lead's table */
|
||||
if(combined<=0x1ffff) {
|
||||
if(combined<=0x1fff) {
|
||||
*(p-2)|=0x8000;
|
||||
} else {
|
||||
*(p-3)|=0x8000;
|
||||
|
|
Loading…
Add table
Reference in a new issue