mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 383542. Stop word breaking at NBSP. r+moa=smontagu
This commit is contained in:
parent
d4d535161d
commit
5424776054
@ -91,7 +91,9 @@ PRUint8 nsSampleWordBreaker::GetClass(PRUnichar c)
|
||||
}
|
||||
} else if(IS_THAI(c)) {
|
||||
return kWbClassThaiLetter;
|
||||
} else {
|
||||
} else if (c == 0x00A0/*NBSP*/) {
|
||||
return kWbClassSpace;
|
||||
} else {
|
||||
return kWbClassAlphaLetter;
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user