commit 9152d2b84ecb37b9ca643d3219752f7f60f79aa1
parent 3ef0e1d6064308437335bb57a15d5e4539dd24df
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date: Wed, 11 Jan 2023 23:46:06 +0100
Fix Gnus subject normalization
Can't even remember what this was about; obviously positives when
grouping threads due to subject-matching being too lax? π€·
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.gnus b/.gnus
@@ -93,7 +93,7 @@
(setq my/gnus-summary-normalize-subject
(rx-to-string
`(seq bol
- (+ (or ,@(my/gnus-reply-prefixes)
+ (+ (or (seq word-start (or ,@(my/gnus-reply-prefixes)) word-end)
(seq "bug#" (+ digit))
(seq "[" (or "External" "SPAM UNSURE") "]"))
(? (* space) ":") (* space)))))