(Emacs/config)~Fix fsan error regexp in compilation

This commit is contained in:
2024-08-24 20:04:06 +01:00
parent 8156bff81a
commit 108b8d08c7

View File

@@ -3388,7 +3388,7 @@ a regular expression which captures file names and digits
:after cc-mode
:config
(add-to-list 'compilation-error-regexp-alist-alist
'(fsan "^ #[[:digit:]] 0x[[:alnum:]]+ in .*? \\(.*.c\\(pp\\)?\\):\\([[:digit:]]+\\):\\([[:digit:]]+\\)"
'(fsan "^ #[[:digit:]] 0x[[:alnum:]]+ in .*? \\(.*.c\\(pp\\)?\\):\\([[:digit:]]+\\)"
1 3 4))
(add-to-list 'compilation-error-regexp-alist
'fsan))