mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-16 22:04:36 +00:00
Bug 257073 - Handle the Catalan middle dot correctly in the spell checker; r=ehsan
This commit is contained in:
parent
9f50fa0d1c
commit
55b4ae42fa
@ -44,7 +44,8 @@ inline bool IsIgnorableCharacter(PRUnichar ch)
|
||||
inline bool IsConditionalPunctuation(PRUnichar ch)
|
||||
{
|
||||
return (ch == '\'' ||
|
||||
ch == 0x2019); // RIGHT SINGLE QUOTATION MARK
|
||||
ch == 0x2019 || // RIGHT SINGLE QUOTATION MARK
|
||||
ch == 0x00B7); // MIDDLE DOT
|
||||
}
|
||||
|
||||
// mozInlineSpellWordUtil::Init
|
||||
|
Loading…
x
Reference in New Issue
Block a user