* LaTeX.cpp: recognize etaremune rerun request.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@37312 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2011-01-24 09:51:11 +00:00
parent e50bbefbe3
commit 7aba7ef9eb
2 changed files with 6 additions and 0 deletions

View File

@ -621,6 +621,10 @@ int LaTeX::scanLogFile(TeXErrors & terr)
&& contains(token, "undefined")) {
retval |= ERROR_RERUN;
LYXERR(Debug::LATEX, "Force rerun.");
// package etaremune
} else if (contains(token, "Etaremune labels have changed")) {
retval |= ERROR_RERUN;
LYXERR(Debug::LATEX, "Force rerun.");
} else if (contains(token, "Citation")
&& contains(token, "on page")
&& contains(token, "undefined")) {

View File

@ -183,6 +183,8 @@ What's new
- Allow paragraph breaks and nested environments in framed boxes.
- Trigger LaTeX rerun if requested by the package etaremune.
* DOCUMENTATION AND LOCALIZATION