From: Georg Baum Date: Sun, 25 Mar 2007 10:45:03 +0000 (+0000) Subject: * src/encoding.C X-Git-Tag: 1.6.10~10511 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8703fa34b9cb36073441f7b8353f5365241f2128;p=features.git * 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 --- diff --git a/src/encoding.C b/src/encoding.C index f73bbf5833..8fb89e1d80 100644 --- a/src/encoding.C +++ b/src/encoding.C @@ -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; }