mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-12 16:50:39 +00:00
* 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:
parent
e50bbefbe3
commit
7aba7ef9eb
@ -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")) {
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user