mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
BufferParams.cpp: fix bug 3568:
http://bugzilla.lyx.org/show_bug.cgi?id=3568 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18227 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8d8b55cf92
commit
f910f7d6e8
@ -1391,6 +1391,11 @@ string const BufferParams::babelCall(string const & lang_opts) const
|
||||
string tmp = lyxrc.language_package;
|
||||
if (!lyxrc.language_global_options && tmp == "\\usepackage{babel}")
|
||||
tmp = string("\\usepackage[") + lang_opts + "]{babel}";
|
||||
// suppress the babel call when there is no babel language defined
|
||||
// in the lib/languages file
|
||||
if (lyxrc.language_global_options && tmp == "\\usepackage{babel}" &&
|
||||
language->babel().empty() )
|
||||
tmp = string("");
|
||||
return tmp;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user