emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master b6db2d0a6f: ; Yet another improvement of doc strings in textsec


From: Eli Zaretskii
Subject: master b6db2d0a6f: ; Yet another improvement of doc strings in textsec
Date: Wed, 19 Jan 2022 07:02:07 -0500 (EST)

branch: master
commit b6db2d0a6f57c57e26a085d63f626859a99a8323
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; Yet another improvement of doc strings in textsec
    
    * lisp/international/textsec.el (textsec-local-address-suspicious-p)
    (textsec-name-suspicious-p): Fix wording of doc strings.
---
 lisp/international/textsec.el | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/lisp/international/textsec.el b/lisp/international/textsec.el
index 51111f5e77..ebd67e4237 100644
--- a/lisp/international/textsec.el
+++ b/lisp/international/textsec.el
@@ -235,9 +235,9 @@ Return nil if it isn't suspicious.  If it is, return a 
string explaining
 the potential problem.
 
 Domain names are considered suspicious if they use characters
-that can look similar to other characters when displayed, or that
-are not allowed by Unicode's IDNA mapping, or are certain other
-non-usual mixtures of characters."
+that can look similar to other characters when displayed, or
+use characters that are not allowed by Unicode's IDNA mapping,
+or use certain other unusual mixtures of characters."
   (catch 'found
     (seq-do
      (lambda (char)
@@ -257,8 +257,8 @@ If it isn't suspicious, return nil.  If it is, return a 
string explaining
 the potential problem.
 
 Email addresses are considered suspicious if they use characters
-that can look similar to other characters when displayed, or are
-certain other non-usual mixtures of characters."
+that can look similar to other characters when displayed, or use
+certain other unusual mixtures of characters."
   (cond
    ((not (equal local (ucs-normalize-NFKC-string local)))
     (format "`%s' is not in normalized format `%s'"
@@ -279,8 +279,8 @@ If it isn't suspicious, return nil.  If it is, return a 
string
 explaining the potential problem.
 
 Names are considered suspicious if they use characters that can
-look similar to other characters when displayed, or are certain
-other non-usual mixtures of characters."
+look similar to other characters when displayed, or use certain
+other unusual mixtures of characters."
   (cond
    ((not (equal name (ucs-normalize-NFC-string name)))
     (format "`%s' is not in normalized format `%s'"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]