Polyglossia is no longer restricted to XeTeX.

Thus enable the use of LuaTeX for all polyglossia-supported languages.
This commit is contained in:
Juergen Spitzmueller 2016-07-11 16:16:14 +02:00
parent cd68c6afdf
commit 343c4c0af8
2 changed files with 3 additions and 5 deletions

View 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);

View File

@ -14,6 +14,7 @@ What's new
* DOCUMENT INPUT/OUTPUT
- Enable the use of LuaTeX for all polyglossia-supported languages.
* TEX2LYX IMPROVEMENTS