]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid occasional confusion of Flymake C/C++ backend
authorJoão Távora <joaotavora@gmail.com>
Mon, 25 Mar 2019 14:50:20 +0000 (14:50 +0000)
committerJoão Távora <joaotavora@gmail.com>
Mon, 25 Mar 2019 14:56:09 +0000 (14:56 +0000)
The regexp would sometimes match non-errors and create a diagnostic
with nil severity, which would have consequences for the Flymake
engine (these should eventually be addressed, too).

* lisp/progmodes/flymake-cc.el (flymake-cc--make-diagnostics):
Tighten regexp.

lisp/progmodes/flymake-cc.el

index 1b449bd07934eee47c754dfdaaf93180174475d0..248c95a256f9b4445a05546c9bcd72e78e921ed9 100644 (file)
@@ -58,7 +58,9 @@ SOURCE."
   (cl-loop
    while
    (search-forward-regexp
-    "^\\(In file included from \\)?<stdin>:\\([0-9]+\\)\\(?::\\([0-9]+\\)\\)?:\n?\\(.*\\): \\(.*\\)$"
+    (concat
+     "^\\(In file included from \\)?<stdin>:\\([0-9]+\\)\\(?::\\([0-9]+\\)\\)"
+     "?:[\n ]?\\(error\\|warning\\|note\\): \\(.*\\)$")
     nil t)
    for msg = (match-string 5)
    for (beg . end) = (flymake-diag-region