]> git.eshelyaron.com Git - emacs.git/commitdiff
Make xwidget-webkit-browse-url slightly more DWIM
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 20 Jul 2020 10:21:39 +0000 (12:21 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 20 Jul 2020 10:21:46 +0000 (12:21 +0200)
* lisp/xwidget.el (xwidget-webkit-browse-url): Prepend "https" to
URLs that don't have a protocol (bug#31369).

lisp/xwidget.el

index 775dddf8ef6a33a48cd6c8f6267fd904977f1d31..aed6c09122cdae25b98112eed26a87a07df83074 100644 (file)
@@ -92,6 +92,9 @@ Interactively, URL defaults to the string looking like a url around point."
   (or (featurep 'xwidget-internal)
       (user-error "Your Emacs was not compiled with xwidgets support"))
   (when (stringp url)
+    ;; If it's a "naked url", just try adding https: to it.
+    (unless (string-match "\\`[A-Za-z]+:" url)
+      (setq url (concat "https://" url)))
     (if new-session
         (xwidget-webkit-new-session url)
       (xwidget-webkit-goto-url url))))