The branch, 2.0.x, has been updated. - Log -----------------------------------------------------------------
commit 725764774e0f5eff36e7b2431b10f53a7afee3cd Author: Juergen Spitzmueller <[email protected]> Date: Sat Dec 22 17:11:55 2012 +0100 Load babel with English-only documents (bug 8423) diff --git a/src/LaTeXFeatures.cpp b/src/LaTeXFeatures.cpp index 15a4ffd..66f91da 100644 --- a/src/LaTeXFeatures.cpp +++ b/src/LaTeXFeatures.cpp @@ -333,9 +333,7 @@ bool LaTeXFeatures::useBabel() const && lyxrc.language_package_selection == LyXRC::LP_NONE)) return false; - return (bufferParams().language->lang() != "english" - && !bufferParams().language->babel().empty()) - || this->hasLanguages(); + return !bufferParams().language->babel().empty() || this->hasLanguages(); } diff --git a/status.20x b/status.20x index 22bea2e..0ce3ebe 100644 --- a/status.20x +++ b/status.20x @@ -66,6 +66,8 @@ What's new * DOCUMENT INPUT/OUTPUT +- Load the babel package also if the document is English-only (bug 8423). + - Do not let child document's settings override master settings (bug 5941). - Correct output of text in changed font size and with decorations (bug 8424). ----------------------------------------------------------------------- Summary of changes: src/LaTeXFeatures.cpp | 4 +--- status.20x | 2 ++ 2 files changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- The LyX Source Repository
