]> git.lyx.org Git - features.git/commitdiff
fix bug 1824
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Wed, 23 Feb 2005 16:56:40 +0000 (16:56 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Wed, 23 Feb 2005 16:56:40 +0000 (16:56 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9673 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/LaTeX.C

index c3c105139b3b41f4ddc048fb2f53e55bbc421ea1..63b289a53fe2fe2ea0aec555c07a0a017ac5b686 100644 (file)
@@ -1,3 +1,7 @@
+2005-02-23  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
+
+       * LaTeX.C (scanLogFile): recognize pdfTeX warnings
+
 2005-02-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
 
        * BufferView.C (setCursor): change to use a DocIterator.
index a47d370a00aa49630d9c7567f68a12becff84e5f..84b7748ef0f37d5f8d5a218b075f57469bb722ff 100644 (file)
@@ -545,7 +545,8 @@ int LaTeX::scanLogFile(TeXErrors & terr)
                if (token.empty())
                        continue;
 
-               if (prefixIs(token, "LaTeX Warning:")) {
+               if (prefixIs(token, "LaTeX Warning:") ||
+                   prefixIs(token, "! pdfTeX warning")) {
                        // Here shall we handle different
                        // types of warnings
                        retval |= LATEX_WARNING;