X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fencoding.C;h=2f6e1446b36ff3d48c28c206a270f279e9873940;hb=69cf3b62043861ccad5f8ad7ffb4981fe50b078d;hp=e9d8217be6e1135702a8e2d149dadd1bb397e7d9;hpb=467b0c0913e2000f728ff66ca0dc332ef69f39d9;p=lyx.git diff --git a/src/encoding.C b/src/encoding.C index e9d8217be6..2f6e1446b3 100644 --- a/src/encoding.C +++ b/src/encoding.C @@ -10,10 +10,6 @@ #include -#ifdef __GNUG__ -#pragma implementation -#endif - #include "encoding.h" #include "lyxlex.h" #include "debug.h" @@ -254,12 +250,12 @@ bool Encodings::IsComposeChar_hebrew(unsigned char c) // Special Arabic letters are ones that do not get connected from left -// they are hamza, alef_madda, alef_hamza, waw_hamza, alef_hamza_under, +// they are hamza, alef_madda, alef_hamza, waw_hamza, alef_hamza_under, // alef, tah_marbota, dal, thal, rah, zai, wow, alef_maksoura bool Encodings::is_arabic_special(unsigned char c) { - return (c >= 0xc1 && c <= 0xc5) || + return (c >= 0xc1 && c <= 0xc5) || c == 0xc7 || c == 0xc9 || c == 0xcf || c == 0xe8 || (c >= 0xd0 && c <= 0xd2) ||