From 83a6107392dc85ee8aca5d18f6f1ab09bd00d3c7 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Sun, 26 May 2013 16:06:13 +0200 Subject: [PATCH] Recognize biber warnings/errors/info messages --- src/frontends/qt4/GuiLog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/frontends/qt4/GuiLog.cpp b/src/frontends/qt4/GuiLog.cpp index f45992eef7..740193cd87 100644 --- a/src/frontends/qt4/GuiLog.cpp +++ b/src/frontends/qt4/GuiLog.cpp @@ -38,11 +38,11 @@ namespace frontend { // Regular expressions needed at several places // Information -QRegExp exprInfo("^(Document Class:|LaTeX Font Info:|File:|Package:|Language:|Underfull|Overfull|\\(|\\\\).*$"); +QRegExp exprInfo("^(Document Class:|LaTeX Font Info:|File:|Package:|Language:|Underfull|Overfull|.*> INFO - |\\(|\\\\).*$"); // Warnings -QRegExp exprWarning("^(LaTeX Warning|LaTeX Font Warning|Package [\\w\\.]+ Warning|Class \\w+ Warning|Warning--).*$"); +QRegExp exprWarning("^(LaTeX Warning|LaTeX Font Warning|Package [\\w\\.]+ Warning|Class \\w+ Warning|Warning--|.*> WARN - ).*$"); // Errors -QRegExp exprError("^(!|.*---line [0-9]+ of file).*$"); +QRegExp exprError("^(!|.*---line [0-9]+ of file|.*> FATAL - |.*> ERROR - ).*$"); ///////////////////////////////////////////////////////////////////// -- 2.39.2