Do not stop on BibTeX errors.

BibTeX errors are still reported via the BibTeX Log dialog, but users are not actively pointed to it.
The feature might be re-enabled in 2.2.
This commit is contained in:
Juergen Spitzmueller 2014-04-09 11:17:53 +02:00
parent 3402e3ead3
commit 148317b60c

View File

@ -139,7 +139,10 @@ public:
///
BIBTEX_ERROR = 16384,
///
ERRORS = TEX_ERROR + LATEX_ERROR + BIBTEX_ERROR,
//FIXME: BIBTEX_ERROR has been removed from ERRORS for now, since users were irritated
// about those errors which prevented compilation ofpreviously compiling documents.
// Think about a "gentle" transfer to BibTeX error reporting.
ERRORS = TEX_ERROR + LATEX_ERROR,
///
WARNINGS = TEX_WARNING + LATEX_WARNING + PACKAGE_WARNING
};