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:
Uwe Stöhr 2007-05-07 18:55:14 +00:00
parent 8d8b55cf92
commit f910f7d6e8

View File

@ -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;
}