summaryrefslogtreecommitdiff
path: root/lisp/net/puny.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2020-10-01 15:24:21 +0200
committerStefan Kangas <stefan@marxist.se>2020-10-01 15:28:15 +0200
commitc6fa0ad315e38167cb81a4d8c143cc53ad783cc3 (patch)
tree65cd558675dbe74b44c91a03a12ce3db32edf1b8 /lisp/net/puny.el
parent379c0592632e3ddb3f2ce454d80ee05a643b1541 (diff)
downloademacs-c6fa0ad315e38167cb81a4d8c143cc53ad783cc3.tar.gz
emacs-c6fa0ad315e38167cb81a4d8c143cc53ad783cc3.tar.bz2
emacs-c6fa0ad315e38167cb81a4d8c143cc53ad783cc3.zip
; Prefer https to http in many URLs
These were all tested with https and confirmed working.
Diffstat (limited to 'lisp/net/puny.el')
-rw-r--r--lisp/net/puny.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/net/puny.el b/lisp/net/puny.el
index cc406076c58..5c58fe02cbf 100644
--- a/lisp/net/puny.el
+++ b/lisp/net/puny.el
@@ -23,7 +23,7 @@
;;; Commentary:
;; Written by looking at
-;; http://stackoverflow.com/questions/183485/can-anyone-recommend-a-good-free-javascript-for-punycode-to-unicode-conversion
+;; https://stackoverflow.com/questions/183485/can-anyone-recommend-a-good-free-javascript-for-punycode-to-unicode-conversion
;;; Code:
@@ -196,12 +196,12 @@ For instance \"xn--bcher-kva\" => \"bücher\"."
(cl-incf i)))
(buffer-string)))
-;; http://www.unicode.org/reports/tr39/#Restriction_Level_Detection
-;; http://www.unicode.org/reports/tr31/#Table_Candidate_Characters_for_Inclusion_in_Identifiers
+;; https://www.unicode.org/reports/tr39/#Restriction_Level_Detection
+;; https://www.unicode.org/reports/tr31/#Table_Candidate_Characters_for_Inclusion_in_Identifiers
(defun puny-highly-restrictive-string-p (string)
"Say whether STRING is \"highly restrictive\" in the Unicode IDNA sense.
-See http://www.unicode.org/reports/tr39/#Restriction_Level_Detection
+See https://www.unicode.org/reports/tr39/#Restriction_Level_Detection
for details. The main idea is that if you're mixing
scripts (like latin and cyrillic), you may confuse the user by
using homographs."