From 61961903fd979f0f385db3138025866c88908c6f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Fri, 28 May 2021 11:48:00 +0200 Subject: [PATCH] ; * lisp/mail/rmail.el (rmail-simplified-subject): Dodge relint nag --- lisp/mail/rmail.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 7ef3754dad1..e479a8e9b4a 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -3360,7 +3360,7 @@ tags such as [tag]." ;; Corporate mailing systems sometimes add `[External] :'; if that happened, ;; delete everything up thru there. Empirically, that deletion makes ;; the Subject match the other messages in the thread. - (if (string-match "[[]external][ \t\n]*:" subject) + (if (string-match "\\[external][ \t\n]*:" subject) (setq subject (substring subject (match-end 0)))) (setq subject (rfc2047-decode-string subject)) (setq subject (replace-regexp-in-string regexp "" subject)) -- 2.39.5