emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 414e79f 1/5: Prefer IceCat to Firefox and Iceweasel


From: Richard M. Stallman
Subject: [Emacs-diffs] master 414e79f 1/5: Prefer IceCat to Firefox and Iceweasel.
Date: Sun, 05 Apr 2015 12:43:22 +0000

branch: master
commit 414e79feeb445dc141b65767dfc3ba8dbb55723c
Author: Richard M. Stallman <address@hidden>
Commit: Richard Stallman <address@hidden>

    Prefer IceCat to Firefox and Iceweasel.
    
    * lisp/net/browse-url.el (browse-url-firefox-program): Prefer IceCat, doc.
    (browse-url-firefox-arguments)
    (browse-url-firefox-startup-arguments): Doc fix.
---
 lisp/ChangeLog         |    6 ++++++
 lisp/net/browse-url.el |    8 ++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b9570ba..be3a763 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2015-03-22  Richard Stallman  <address@hidden>
+
+       * net/browse-url.el (browse-url-firefox-program): Prefer IceCat, doc.
+       (browse-url-firefox-arguments)
+       (browse-url-firefox-startup-arguments): Doc fix.
+
 2015-02-01  Joakim Verona  <address@hidden>
        Support for the new Xwidget feature.
        * xwidget.el:
diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el
index 57c7b61..e21a4c2 100644
--- a/lisp/net/browse-url.el
+++ b/lisp/net/browse-url.el
@@ -317,21 +317,21 @@ Defaults to the value of `browse-url-mozilla-arguments' 
at the time
   :group 'browse-url)
 
 (defcustom browse-url-firefox-program
-  (let ((candidates '("firefox" "iceweasel" "icecat")))
+  (let ((candidates '("icecat" "iceweasel" "firefox")))
     (while (and candidates (not (executable-find (car candidates))))
       (setq candidates (cdr candidates)))
     (or (car candidates) "firefox"))
-  "The name by which to invoke Firefox."
+  "The name by which to invoke Firefox or a variant of it."
   :type 'string
   :group 'browse-url)
 
 (defcustom browse-url-firefox-arguments nil
-  "A list of strings to pass to Firefox as arguments."
+  "A list of strings to pass to Firefox (or variant) as arguments."
   :type '(repeat (string :tag "Argument"))
   :group 'browse-url)
 
 (defcustom browse-url-firefox-startup-arguments browse-url-firefox-arguments
-  "A list of strings to pass to Firefox when it starts up.
+  "A list of strings to pass to Firefox (or variant) when it starts up.
 Defaults to the value of `browse-url-firefox-arguments' at the time
 `browse-url' is loaded."
   :type '(repeat (string :tag "Argument"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]