aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r--Emacs/.config/emacs/config.org8
1 files changed, 4 insertions, 4 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index 8340acb..29db14a 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -3485,12 +3485,12 @@ a regular expression which captures file names and digits
:config
(add-to-list 'compilation-error-regexp-alist-alist
`(fsan ,(rx (seq
- line-start " #" digit " 0x" (one-or-more hex) " in "
- (1+ word) " "
- (group (seq (* any) (or ".c" ".cpp"))) ":"
+ line-start " #" digit " 0x" (1+ hex) " in "
+ (1+ (or word "_")) " "
+ (group (seq (* any) (or ".c" ".cpp" ".h" ".hpp"))) ":"
(group (+ digit))))
- 1 3 4))
+ 1 2))
(add-to-list 'compilation-error-regexp-alist
'fsan))
#+end_src