]> git.lyx.org Git - lyx.git/blobdiff - src/Encoding.cpp
adjust
[lyx.git] / src / Encoding.cpp
index ae03c09b4869006f41363bf09f4bdca4e2112c66..9e7f139cd3aa70ac6df69ff1c7fc95ed8ffdf277 100644 (file)
@@ -401,6 +401,25 @@ bool Encodings::isCombiningChar(char_type c)
 }
 
 
+bool Encodings::isKnownLangChar(char_type c, string & preamble)
+{
+       CharInfoMap::const_iterator const it = unicodesymbols.find(c);
+
+       if (it == unicodesymbols.end())
+               return false;
+
+       if (it->second.preamble != "textgreek" &&
+           it->second.preamble != "textcyr")
+               return false;
+
+       if (preamble.empty()) {
+               preamble = it->second.preamble;
+               return true;
+       }
+       return it->second.preamble == preamble;
+}
+
+
 Encoding const * Encodings::getFromLyXName(string const & name) const
 {
        EncodingList::const_iterator it = encodinglist.find(name);
@@ -519,20 +538,19 @@ void Encodings::read(FileName const & encfile, FileName const & symbolsfile)
                        string const iconvname = lex.getString();
                        lex.next();
                        string const width = lex.getString();
-                       bool fixedwidth;;
+                       bool fixedwidth = false;
                        if (width == "fixed")
                                fixedwidth = true;
                        else if (width == "variable")
                                fixedwidth = false;
                        else {
-                                fixedwidth = false;
                                lex.printError("Encodings::read: "
                                               "Unknown width: `$$Token'");
                         }
                         
                        lex.next();
                        string const p = lex.getString();
-                       Encoding::Package package;
+                       Encoding::Package package = Encoding::none;
                        if (p == "none")
                                 package = Encoding::none;
                        else if (p == "inputenc")
@@ -540,7 +558,6 @@ void Encodings::read(FileName const & encfile, FileName const & symbolsfile)
                        else if (p == "CJK")
                                package = Encoding::CJK;
                        else {
-                                package = Encoding::none;
                                lex.printError("Encodings::read: "
                                               "Unknown package: `$$Token'");
                         }