]> git.lyx.org Git - features.git/commitdiff
Polyglossia is no longer restricted to XeTeX.
authorJuergen Spitzmueller <spitz@lyx.org>
Mon, 11 Jul 2016 14:16:14 +0000 (16:16 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Mon, 11 Jul 2016 14:16:14 +0000 (16:16 +0200)
Thus enable the use of LuaTeX for all polyglossia-supported languages.

src/BufferParams.cpp
status.22x

index d4ce087c04d372f18c3a1802aea69f0c0391725b..a8c0a497dfecde1bf574d8de975616af5367aab5 100644 (file)
@@ -2418,11 +2418,8 @@ vector<string> BufferParams::backends() const
                v.push_back("xetex");
        } else if (buffmt == "xetex") {
                v.push_back("xetex");
-               // FIXME: need to test all languages (bug 8205)
-               if (!language || !language->isPolyglossiaExclusive()) {
-                       v.push_back("luatex");
-                       v.push_back("dviluatex");
-               }
+               v.push_back("luatex");
+               v.push_back("dviluatex");
        } else
                v.push_back(buffmt);
 
index 776285d5cd32e896704393ff574a4e07d3ae43a9..f78132d4c068dd1dea93cc323208ed0d92c0fe17 100644 (file)
@@ -14,6 +14,7 @@ What's new
 
 * DOCUMENT INPUT/OUTPUT
 
+- Enable the use of LuaTeX for all polyglossia-supported languages.
 
 
 * TEX2LYX IMPROVEMENTS