From: Giuseppe Scrivano Date: Sat, 25 Jun 2011 09:31:24 +0000 (+0200) Subject: Add icecat to the firefox candidates list. X-Git-Tag: emacs-pretest-24.0.90~104^2~152^2~414^2~7 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f9ad64f3c162cef784e341e7316e42e25a9f03cc;p=emacs.git Add icecat to the firefox candidates list. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index efb5e0ffad7..d95f9000217 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2011-06-25 Giuseppe Scrivano + + * net/browse-url.el (browse-url-firefox-program): Add icecat to + the candidates list. + 2011-06-24 Juanma Barranquero * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable. diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el index d9e6827d2df..ac12030471e 100644 --- a/lisp/net/browse-url.el +++ b/lisp/net/browse-url.el @@ -322,7 +322,7 @@ Defaults to the value of `browse-url-mozilla-arguments' at the time :group 'browse-url) (defcustom browse-url-firefox-program - (let ((candidates '("firefox" "iceweasel"))) + (let ((candidates '("firefox" "iceweasel" "icecat"))) (while (and candidates (not (executable-find (car candidates)))) (setq candidates (cdr candidates))) (or (car candidates) "firefox"))