]> git.eshelyaron.com Git - emacs.git/commitdiff
(browse-url-default-browser): Signal an error if no usable browser can
authorRomain Francoise <romain@orebokech.com>
Sat, 19 Nov 2005 15:57:20 +0000 (15:57 +0000)
committerRomain Francoise <romain@orebokech.com>
Sat, 19 Nov 2005 15:57:20 +0000 (15:57 +0000)
be found, rather than try to load w3.

lisp/ChangeLog
lisp/net/browse-url.el

index 7872c490a0bd192c6f325529d5313111b908e223..8f22f75f15c104443a9abfe8a9eb537c155cb62f 100644 (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
index 54fddf9261cf618fcd09f9a61854d7b0e7b8da75..8d57bb30c11c53757c839e999218cb24f212b418 100644 (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