commit 148317b60c136fa270ce3cbab656f784e4c8c4f8
Author: Juergen Spitzmueller <[email protected]>
Date: Wed Apr 9 11:17:53 2014 +0200
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.
diff --git a/src/LaTeX.h b/src/LaTeX.h
index 377ae51..eeb7d04 100644
--- a/src/LaTeX.h
+++ b/src/LaTeX.h
@@ -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
};