From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Giuseppe Scrivano Newsgroups: gmane.emacs.devel Subject: [PATCH] Add icecat to the firefox candidates list Date: Wed, 22 Jun 2011 16:34:24 +0200 Message-ID: <87pqm6oryn.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1308753324 7689 80.91.229.12 (22 Jun 2011 14:35:24 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 22 Jun 2011 14:35:24 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jun 22 16:35:20 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QZOWU-0004FK-3Q for ged-emacs-devel@m.gmane.org; Wed, 22 Jun 2011 16:35:18 +0200 Original-Received: from localhost ([::1]:60861 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZOWT-0003At-11 for ged-emacs-devel@m.gmane.org; Wed, 22 Jun 2011 10:35:17 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:49311) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZOVw-00038C-Vn for emacs-devel@gnu.org; Wed, 22 Jun 2011 10:34:53 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QZOVt-0001GY-0n for emacs-devel@gnu.org; Wed, 22 Jun 2011 10:34:44 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]:48396) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZOVs-0001GU-Ri for emacs-devel@gnu.org; Wed, 22 Jun 2011 10:34:40 -0400 Original-Received: from localhost ([127.0.0.1]:55558 helo=svart.gnu.org) by fencepost.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZOVs-0005bt-HX; Wed, 22 Jun 2011 10:34:40 -0400 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.10 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:140847 Archived-At: Is the following patch OK for trunk? Cheers, Giuseppe === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2011-06-22 09:23:31 +0000 +++ lisp/ChangeLog 2011-06-22 14:30:41 +0000 @@ -1,3 +1,8 @@ +2011-06-22 Giuseppe Scrivano + + * net/browse-url.el (browse-url-firefox-program): Add icecat to + the candidates list. + 2011-06-22 Lars Magne Ingebrigtsen * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send === modified file 'lisp/net/browse-url.el' --- lisp/net/browse-url.el 2011-05-08 18:34:51 +0000 +++ lisp/net/browse-url.el 2011-06-22 14:30:43 +0000 @@ -322,7 +322,7 @@ :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"))