Fix fsan compilation-error-regexp
This commit is contained in:
@@ -3485,12 +3485,12 @@ a regular expression which captures file names and digits
|
|||||||
:config
|
:config
|
||||||
(add-to-list 'compilation-error-regexp-alist-alist
|
(add-to-list 'compilation-error-regexp-alist-alist
|
||||||
`(fsan ,(rx (seq
|
`(fsan ,(rx (seq
|
||||||
line-start " #" digit " 0x" (one-or-more hex) " in "
|
line-start " #" digit " 0x" (1+ hex) " in "
|
||||||
(1+ word) " "
|
(1+ (or word "_")) " "
|
||||||
(group (seq (* any) (or ".c" ".cpp"))) ":"
|
(group (seq (* any) (or ".c" ".cpp" ".h" ".hpp"))) ":"
|
||||||
(group (+ digit))))
|
(group (+ digit))))
|
||||||
|
|
||||||
1 3 4))
|
1 2))
|
||||||
(add-to-list 'compilation-error-regexp-alist
|
(add-to-list 'compilation-error-regexp-alist
|
||||||
'fsan))
|
'fsan))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|||||||
Reference in New Issue
Block a user