mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 11:08:41 +00:00
* src/encoding.C
(Encodings::isComposeChar_hebrew): Change code points from CP1255 to UCS4 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17543 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a73baed13b
commit
8703fa34b9
@ -195,8 +195,8 @@ void Encoding::validate(char_type c, LaTeXFeatures & features) const
|
|||||||
|
|
||||||
bool Encodings::isComposeChar_hebrew(char_type c)
|
bool Encodings::isComposeChar_hebrew(char_type c)
|
||||||
{
|
{
|
||||||
return c <= 0xd2 && c >= 0xc0 &&
|
return c <= 0x05c2 && c >= 0x05b0 &&
|
||||||
c != 0xce && c != 0xd0;
|
c != 0x05be && c != 0x05c0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user