* 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:
Georg Baum 2007-03-25 10:45:03 +00:00
parent a73baed13b
commit 8703fa34b9

View File

@ -195,8 +195,8 @@ void Encoding::validate(char_type c, LaTeXFeatures & features) const
bool Encodings::isComposeChar_hebrew(char_type c)
{
return c <= 0xd2 && c >= 0xc0 &&
c != 0xce && c != 0xd0;
return c <= 0x05c2 && c >= 0x05b0 &&
c != 0x05be && c != 0x05c0;
}