BufferParams.cpp: add comment

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20591 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2007-09-29 15:16:45 +00:00
parent e456b5e919
commit 6081aa09fa

View File

@ -1126,6 +1126,10 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
// So load babel after the optional packages but before the user-defined
// preamble. This allows the users to redefine babel commands, e.g. to
// translate the word "Index" to the German "Stichwortverzeichnis".
// For more infos why this place was chosen, see
// http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg128425.html
// if you encounter problem, you can shift babel to its old place behind
// the user-defined preamble
if (use_babel && !features.isRequired("jurabib")) {
// FIXME UNICODE
lyxpreamble += from_utf8(babelCall(language_options.str())) + '\n';