From 5006e19856ea88eb042d1af1cb05136bf2f25cd7 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Tue, 18 Jan 2022 13:34:39 +0100 Subject: [PATCH] The name in textsec-email-suspicious-p is optional * lisp/international/textsec.el (textsec-email-suspicious-p): The name is optional. --- lisp/international/textsec.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/international/textsec.el b/lisp/international/textsec.el index 55e4ce9d86c..70ac1d080d2 100644 --- a/lisp/international/textsec.el +++ b/lisp/international/textsec.el @@ -311,7 +311,7 @@ problem is returned." (or (textsec-domain-suspicious-p domain) (textsec-local-address-suspicious-p local) - (textsec-name-suspicious-p name)))) + (and name (textsec-name-suspicious-p name))))) (provide 'textsec) -- 2.39.2