From: Juergen Spitzmueller Date: Sun, 26 May 2013 14:06:13 +0000 (+0200) Subject: Recognize biber warnings/errors/info messages X-Git-Tag: 2.1.0beta1~152 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=83a6107392dc85ee8aca5d18f6f1ab09bd00d3c7;p=features.git Recognize biber warnings/errors/info messages --- 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 - ).*$"); /////////////////////////////////////////////////////////////////////