diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-01-18 13:34:39 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-01-18 13:34:39 +0100 |
commit | 5006e19856ea88eb042d1af1cb05136bf2f25cd7 (patch) | |
tree | 5553e67b65760a91de416cd89c24377f1478b557 | |
parent | ce63f9102545fa50abbe08a4083b332a9101c243 (diff) | |
download | emacs-5006e19856ea88eb042d1af1cb05136bf2f25cd7.tar.gz emacs-5006e19856ea88eb042d1af1cb05136bf2f25cd7.tar.bz2 emacs-5006e19856ea88eb042d1af1cb05136bf2f25cd7.zip |
The name in textsec-email-suspicious-p is optional
* lisp/international/textsec.el (textsec-email-suspicious-p): The
name is optional.
-rw-r--r-- | lisp/international/textsec.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |