summaryrefslogtreecommitdiff
path: root/lisp/net/quickurl.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/net/quickurl.el')
-rw-r--r--lisp/net/quickurl.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/net/quickurl.el b/lisp/net/quickurl.el
index 652eb2ffe82..c9b17937df1 100644
--- a/lisp/net/quickurl.el
+++ b/lisp/net/quickurl.el
@@ -20,7 +20,7 @@
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
+;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
@@ -39,7 +39,7 @@
;; where <Lookup> is a string that acts as the keyword lookup and <URL> is
;; the URL associated with it. An example might be:
;;
-;; ("GNU" . "http://www.gnu.org/")
+;; ("GNU" . "https://www.gnu.org/")
;;
;; A list entry looks like:
;;
@@ -50,12 +50,12 @@
;; used when presenting a list of URLS using `quickurl-list'. An example
;; might be:
;;
-;; ("FSF" "http://www.fsf.org/" "The Free Software Foundation")
+;; ("FSF" "https://www.fsf.org/" "The Free Software Foundation")
;;
;; Given the above, your quickurl file might look like:
;;
-;; (("GNU" . "http://www.gnu.org/")
-;; ("FSF" "http://www.fsf.org/" "The Free Software Foundation")
+;; (("GNU" . "https://www.gnu.org/")
+;; ("FSF" "https://www.fsf.org/" "The Free Software Foundation")
;; ("emacs" . "http://www.emacs.org/")
;; ("davep" "http://www.davep.org/" "Dave's homepage"))
;;