mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
Backport fix for bug #6593
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@33805 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
3f3b24316b
commit
ab484f3453
@ -744,6 +744,13 @@ int LaTeX::scanLogFile(TeXErrors & terr)
|
||||
} else if (contains(token, "That makes 100 errors")) {
|
||||
// More than 100 errors were reprted
|
||||
retval |= TOO_MANY_ERRORS;
|
||||
} else if (prefixIs(token, "!pdfTeX error:")){
|
||||
// otherwise we dont catch e.g.:
|
||||
// !pdfTeX error: pdflatex (file feyn10): Font feyn10 at 600 not found
|
||||
retval |= ERRORS;
|
||||
terr.insertError(0,
|
||||
from_local8bit("pdfTeX Error"),
|
||||
from_local8bit(token));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user