]> git.lyx.org Git - features.git/commitdiff
* src/encoding.C
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Sun, 25 Mar 2007 10:45:03 +0000 (10:45 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Sun, 25 Mar 2007 10:45:03 +0000 (10:45 +0000)
(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

src/encoding.C

index f73bbf5833891e0e88b7777b707a1d0f178bdba4..8fb89e1d80064ac7872e031344eef55fecd60ead 100644 (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;
 }