mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
* LaTeX.cpp:
- perform extra LaTeX run when requested by lettre.cls (bug 5818). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28828 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ce8babd5b0
commit
4e61a40a92
@ -640,6 +640,12 @@ int LaTeX::scanLogFile(TeXErrors & terr)
|
||||
LYXERR(Debug::LATEX, "We should rerun.");
|
||||
retval |= RERUN;
|
||||
}
|
||||
} else if (prefixIs(token, "LETTRE WARNING:")) {
|
||||
if (contains(token, "veuillez recompiler")) {
|
||||
// lettre.cls
|
||||
LYXERR(Debug::LATEX, "We should rerun.");
|
||||
retval |= RERUN;
|
||||
}
|
||||
} else if (token[0] == '(') {
|
||||
if (contains(token, "Rerun LaTeX") ||
|
||||
contains(token, "Rerun to get")) {
|
||||
|
Loading…
Reference in New Issue
Block a user