mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-26 18:07:18 +00:00
Update exit code on second LaTeX run (#9765)
Before, the exit code for the first LaTeX run was used to set the flag, which caused an error to be reported when in fact there was no error on the second run. This fix ammends 1dbf0e5a.
This commit is contained in:
parent
6f207b37ed
commit
0a91abbc9f
@ -232,12 +232,12 @@ int LaTeX::run(TeXErrors & terr)
|
||||
LYXERR(Debug::LATEX, "Run #" << count);
|
||||
message(runMessage(count));
|
||||
|
||||
int const exit_code = startscript();
|
||||
int exit_code = startscript();
|
||||
|
||||
scanres = scanLogFile(terr);
|
||||
if (scanres & ERROR_RERUN) {
|
||||
LYXERR(Debug::LATEX, "Rerunning LaTeX");
|
||||
startscript();
|
||||
exit_code = startscript();
|
||||
scanres = scanLogFile(terr);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user