aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/net/browse-url.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el
index a7c879cbfbc..04b49c44313 100644
--- a/lisp/net/browse-url.el
+++ b/lisp/net/browse-url.el
@@ -878,7 +878,7 @@ The optional NEW-WINDOW argument is not used."
878 (error "Browsing URLs is not supported on this system"))) 878 (error "Browsing URLs is not supported on this system")))
879 ((eq system-type 'cygwin) 879 ((eq system-type 'cygwin)
880 (call-process "cygstart" nil nil nil url)) 880 (call-process "cygstart" nil nil nil url))
881 (t (w32-shell-execute "open" url)))) 881 (t (w32-shell-execute "open" (url-unhex-string url)))))
882 882
883(defun browse-url-default-macosx-browser (url &optional _new-window) 883(defun browse-url-default-macosx-browser (url &optional _new-window)
884 "Invoke the macOS system's default Web browser. 884 "Invoke the macOS system's default Web browser.