зеркало из https://github.com/mozilla/gecko-dev.git
fix the ignore 1 for 10 problem for cjk-ideographics style
This commit is contained in:
Родитель
32244b901c
Коммит
0af90f4741
|
@ -429,7 +429,8 @@ static void CJKIdeographicToText(PRInt32 ordinal, nsString& result,
|
|||
buf[--idx] = c10kUnit;
|
||||
if(0 != cUnit)
|
||||
buf[--idx] = cUnit;
|
||||
if((0 != cDigit) && ( 1 == (ud%4)) && (ordinal < 10))
|
||||
if((0 != cDigit) &&
|
||||
( (1 != cur) || (1 != (ud%4)) || ( ordinal > 10)) )
|
||||
buf[--idx] = cDigit;
|
||||
|
||||
c10kUnit = 0;
|
||||
|
|
|
@ -429,7 +429,8 @@ static void CJKIdeographicToText(PRInt32 ordinal, nsString& result,
|
|||
buf[--idx] = c10kUnit;
|
||||
if(0 != cUnit)
|
||||
buf[--idx] = cUnit;
|
||||
if((0 != cDigit) && ( 1 == (ud%4)) && (ordinal < 10))
|
||||
if((0 != cDigit) &&
|
||||
( (1 != cur) || (1 != (ud%4)) || ( ordinal > 10)) )
|
||||
buf[--idx] = cDigit;
|
||||
|
||||
c10kUnit = 0;
|
||||
|
|
Загрузка…
Ссылка в новой задаче