mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Support a changed log message in newest LuaTeX
The version of LuaTeX that ships with TeX Live 2016 now gives the following message after processing a document that yields no pages of output: "warning (pdf backend): no pages of output." The lowercase "n" in "no" is a change that caused our parser not to pick up the message.
This commit is contained in:
parent
1e8b925c07
commit
6a2219bc6f
@ -878,7 +878,8 @@ int LaTeX::scanLogFile(TeXErrors & terr)
|
||||
} else if (contains(token, "Rerun to get citations")) {
|
||||
// Natbib seems to use this.
|
||||
retval |= UNDEF_CIT;
|
||||
} else if (contains(token, "No pages of output")) {
|
||||
} else if (contains(token, "No pages of output")
|
||||
|| contains(token, "no pages of output")) {
|
||||
// No output file (e.g. the DVI or PDF) was created
|
||||
retval |= NO_OUTPUT;
|
||||
} else if (contains(token, "That makes 100 errors")) {
|
||||
|
Loading…
Reference in New Issue
Block a user