]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Flymake tests for GCC 8.2.0
authorJoão Távora <joaotavora@gmail.com>
Fri, 4 Jan 2019 22:45:29 +0000 (22:45 +0000)
committerJoão Távora <joaotavora@gmail.com>
Sat, 5 Jan 2019 11:38:36 +0000 (11:38 +0000)
Fixes: bug#33872
"Now you have two problems..."

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

lisp/progmodes/flymake-cc.el

index e8069f5c17bf68ce28eeff41a309b4a0b37a69ea..524521d7db236fea6fadf7be44059ee351ca622c 100644 (file)
@@ -58,13 +58,13 @@ SOURCE."
   (cl-loop
    while
    (search-forward-regexp
-    "^\\(In file included from \\)?<stdin>:\\([0-9]+\\):\\([0-9]+\\):\n?\\(.*\\): \\(.*\\)$"
+    "^\\(In file included from \\)?<stdin>:\\([0-9]+\\)\\(?::\\([0-9]+\\)\\)?:\n?\\(.*\\): \\(.*\\)$"
     nil t)
    for msg = (match-string 5)
    for (beg . end) = (flymake-diag-region
                       source
                       (string-to-number (match-string 2))
-                      (string-to-number (match-string 3)))
+                      (and (match-string 3) (string-to-number (match-string 3))))
    for type = (if (match-string 1)
                   :error
                 (assoc-default