1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-05 20:43:08 +00:00

(browse-url-default-browser): Signal an error if no usable browser can

be found, rather than try to load w3.
This commit is contained in:
Romain Francoise 2005-11-19 15:57:20 +00:00
parent 6c72c0c7d6
commit f0f98146d2
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-11-19 Romain Francoise <romain@orebokech.com>
* net/browse-url.el (browse-url-default-browser): Signal an error
if no usable browser can be found, rather than try to load w3.
2005-11-16 Ryan Yeske <rcyeske@gmail.com>
* net/rcirc.el (rcirc-mangle-text): Add bold face property without
@ -82,7 +87,7 @@
* progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
speedbar.
(gdb-find-watch-expression): New function.
2005-11-17 Chong Yidong <cyd@stupidchicken.com>
* faces.el (face-attribute, set-face-attribute): Mention existence

View File

@ -864,7 +864,9 @@ xterm, MMM, and then W3."
((executable-find "tellw3b") 'browse-url-iximosaic)
((executable-find browse-url-xterm-program) 'browse-url-lynx-xterm)
((executable-find "mmm") 'browse-url-mmm)
(t 'browse-url-w3))
((locate-library "w3") 'browse-url-w3)
(t
(lambda (&ignore args) (error "No usable browser found"))))
url args))
;;;###autoload