emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 1a84b7a 1/2: Tighten `gnu` compile regexp further


From: Mattias Engdegård
Subject: master 1a84b7a 1/2: Tighten `gnu` compile regexp further
Date: Wed, 24 Nov 2021 09:14:16 -0500 (EST)

branch: master
commit 1a84b7a3289829d6f404c323f0f673e32234484f
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>

    Tighten `gnu` compile regexp further
    
    * lisp/progmodes/compile.el (compilation-error-regexp-alist-alist):
    The -fanalyzer ASCII art does not contain tabs.
---
 lisp/progmodes/compile.el | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 2d4070c..6e3589d 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -347,9 +347,8 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
        ;; which is used for non-interactive programs other than
        ;; compilers (e.g. the "jade:" entry in compilation.txt).
        (? (| (: alpha (+ (in ?. ?- alnum)) ":" (? " "))
-             ;; Skip indentation generated by tools like GCC's
-             ;; -fanalyzer.
-             (: (+ (in " \t")) "|")))
+             ;; Skip indentation generated by GCC's -fanalyzer.
+             (: (+ " ") "|")))
 
        ;; File name group.
        (group-n 1



reply via email to

[Prev in Thread] Current Thread [Next in Thread]