From 1a84b7a3289829d6f404c323f0f673e32234484f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Wed, 24 Nov 2021 10:21:49 +0100 Subject: [PATCH] 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 2d4070c389c..6e3589df7ad 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 -- 2.39.5