зеркало из https://github.com/mozilla/pjs.git
fix mHasMultibyte hint problem when the first character of the *word* is not ASCII
This commit is contained in:
Родитель
f8bb86b423
Коммит
2e945807e6
|
@ -212,6 +212,7 @@ nsTextTransformer::GetNextWord(PRBool aInWord,
|
|||
else if (CH_NBSP == firstChar) {
|
||||
firstChar = ' ';
|
||||
}
|
||||
if (firstChar > MAX_UNIBYTE) mHasMultibyte = PR_TRUE;
|
||||
*bp++ = firstChar;
|
||||
if (offset == frag->GetLength()) {
|
||||
mCurrentFrag = ++frag;
|
||||
|
|
|
@ -212,6 +212,7 @@ nsTextTransformer::GetNextWord(PRBool aInWord,
|
|||
else if (CH_NBSP == firstChar) {
|
||||
firstChar = ' ';
|
||||
}
|
||||
if (firstChar > MAX_UNIBYTE) mHasMultibyte = PR_TRUE;
|
||||
*bp++ = firstChar;
|
||||
if (offset == frag->GetLength()) {
|
||||
mCurrentFrag = ++frag;
|
||||
|
|
Загрузка…
Ссылка в новой задаче