* src/LaTeX.cpp: Get rid of annoying LaTeX error after changing the document language

(bug 2468)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19229 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2007-07-27 18:42:48 +00:00
parent 1696c09712
commit 606e4877d1

View File

@ -689,7 +689,9 @@ int LaTeX::scanLogFile(TeXErrors & terr)
// we have a latex error
retval |= TEX_ERROR;
if (contains(desc,
"Package babel Error: You haven't defined the language"))
"Package babel Error: You haven't defined the language") ||
contains(desc,
"Package babel Error: You haven't loaded the option"))
retval |= ERROR_RERUN;
// get the line number:
int line = 0;