Prefer HTTPS to HTTP in most links

This commit is contained in:
Stefan Kangas 2021-03-21 19:55:14 +01:00 committed by Kyle Meyer
parent 2f8b3f024c
commit 986a5b3280

View file

@ -976,7 +976,7 @@ address."
(defun org-contacts-vcard-escape (str) (defun org-contacts-vcard-escape (str)
"Escape ; , and \n in STR for the VCard format." "Escape ; , and \n in STR for the VCard format."
;; Thanks to this library for the regexp: ;; Thanks to this library for the regexp:
;; http://www.emacswiki.org/cgi-bin/wiki/bbdb-vcard-export.el ;; https://www.emacswiki.org/cgi-bin/wiki/bbdb-vcard-export.el
(when str (when str
(replace-regexp-in-string (replace-regexp-in-string
"\n" "\\\\n" "\n" "\\\\n"