mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-29 19:48:19 +00:00
* net/browse-url.el (browse-url-default-windows-browser): Use
cygstart for cygwin.
This commit is contained in:
parent
5c3ef352f1
commit
e572025ff1
@ -1,3 +1,8 @@
|
||||
2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
|
||||
|
||||
* net/browse-url.el (browse-url-default-windows-browser): Use
|
||||
cygstart for cygwin.
|
||||
|
||||
2009-11-20 Karl Fogel <karl.fogel@red-bean.com>
|
||||
|
||||
* bookmark.el Formatting and doc fixes only:
|
||||
|
@ -830,11 +830,13 @@ to use."
|
||||
|
||||
(defun browse-url-default-windows-browser (url &optional new-window)
|
||||
(interactive (browse-url-interactive-arg "URL: "))
|
||||
(if (eq system-type 'ms-dos)
|
||||
(if dos-windows-version
|
||||
(shell-command (concat "start " (shell-quote-argument url)))
|
||||
(error "Browsing URLs is not supported on this system"))
|
||||
(w32-shell-execute "open" url)))
|
||||
(cond ((eq system-type 'ms-dos)
|
||||
(if dos-windows-version
|
||||
(shell-command (concat "start " (shell-quote-argument url)))
|
||||
(error "Browsing URLs is not supported on this system")))
|
||||
((eq system-type 'cygwin)
|
||||
(shell-command (concat "cygstart " (shell-quote-argument url))))
|
||||
(t (w32-shell-execute "open" url))))
|
||||
|
||||
(defun browse-url-default-macosx-browser (url &optional new-window)
|
||||
(interactive (browse-url-interactive-arg "URL: "))
|
||||
|
Loading…
Reference in New Issue
Block a user