Function: puny-highly-restrictive-domain-p
puny-highly-restrictive-domain-p is a byte-compiled function defined
in puny.el.gz.
Signature
(puny-highly-restrictive-domain-p DOMAIN)
Documentation
Say whether DOMAIN is "highly restrictive" in the Unicode IDNA sense.
See puny-highly-restrictive-string-p for further details.
Source Code
;; Defined in /usr/src/emacs/lisp/net/puny.el.gz
(defun puny-highly-restrictive-domain-p (domain)
"Say whether DOMAIN is \"highly restrictive\" in the Unicode IDNA sense.
See `puny-highly-restrictive-string-p' for further details."
(seq-every-p 'puny-highly-restrictive-string-p (split-string domain "[.]")))