]> git.lyx.org Git - lyx.git/commitdiff
Add on to fix for #2757
authorScott Kostyshak <skostysh@lyx.org>
Tue, 7 Apr 2015 06:30:54 +0000 (02:30 -0400)
committerScott Kostyshak <skostysh@lyx.org>
Tue, 7 Apr 2015 06:45:09 +0000 (02:45 -0400)
- Treat BibTeX errors as errors so the LaTeX Errors dialog is shown.
- Add RELEASE-NOTES (updated from cba432f1).

RELEASE-NOTES
src/LaTeX.h

index 6e9655e9bec01339a08c61efd3feae4aff837981..a0180f37784dde8286e812d7e3b29d0d57612255 100644 (file)
@@ -47,7 +47,6 @@ The following metadata files have been added to the tarball in 2.2:
 Changes with respect to external programs and libraries in 2.2:
 --------------------------------------------------------
 
-
 - LyX is not yet supposed to work with Qt5. It is advised to compile and 
   run LyX against Qt 4.8.x. On Windows, Qt 4.8.5 suffers from a bug that 
   breaks the use of shortcuts, so on Windows Qt 4.8.4 is advised.
@@ -67,3 +66,8 @@ Known issues in version 2.2.0
 Caveats when upgrading from earlier versions to 2.2.x
 -------------------------------------------------------
 
+- BibTeX errors are now processed and cause LyX to show the errors dialog.
+  Before, these errors were ignored, which means that it may happen that
+  documents that compiled without error with a previous version now
+  compile with error. However, because now in 2.2.x users can click on
+  the "Show Output Anyway" button, the document can still be viewed.
index 7fa6798ff05cdbee0aad6a6dfdeb47f66c941aa7..6b71f0f8a72b0240d2b16cc872f74ff150f319df 100644 (file)
@@ -140,10 +140,7 @@ public:
                ///
                NONZERO_ERROR = 32768, // the command exited with nonzero status
                ///
-               //FIXME: BIBTEX_ERROR has been removed from ERRORS for now, since users were irritated
-               //       about those errors which prevented compilation of previously compiling documents.
-               //       Think about a "gentle" transfer to BibTeX error reporting.
-               ERRORS = TEX_ERROR + LATEX_ERROR + NONZERO_ERROR,
+               ERRORS = TEX_ERROR + LATEX_ERROR + NONZERO_ERROR + BIBTEX_ERROR,
                ///
                WARNINGS = TEX_WARNING + LATEX_WARNING + PACKAGE_WARNING
        };