aboutsummaryrefslogtreecommitdiff
path: root/Emacs
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-10-01 16:22:08 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-10-01 16:26:00 +0100
commit003df0a5cf4ed56e4d8da3f21f020b77f7324948 (patch)
tree49969cde0ff58624a25aec4faab27eb3ca71e63f /Emacs
parent3fe3062be14886a5ae9e2cdca9fc4013716878d3 (diff)
downloaddotfiles-003df0a5cf4ed56e4d8da3f21f020b77f7324948.tar.gz
dotfiles-003df0a5cf4ed56e4d8da3f21f020b77f7324948.tar.bz2
dotfiles-003df0a5cf4ed56e4d8da3f21f020b77f7324948.zip
Fix fsan compilation-error-regexp
Diffstat (limited to '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