From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Add icecat to the firefox candidates list Date: Thu, 23 Jun 2011 17:43:36 -0400 Message-ID: References: <87pqm6oryn.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1308865454 9692 80.91.229.12 (23 Jun 2011 21:44:14 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 23 Jun 2011 21:44:14 +0000 (UTC) Cc: emacs-devel@gnu.org To: Giuseppe Scrivano Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 23 23:44:10 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 1QZrh4-0001oO-3b for ged-emacs-devel@m.gmane.org; Thu, 23 Jun 2011 23:44:10 +0200 Original-Received: from localhost ([::1]:46035 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZrh3-0006bK-6B for ged-emacs-devel@m.gmane.org; Thu, 23 Jun 2011 17:44:09 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:42896) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZrgg-0006ZV-2l for emacs-devel@gnu.org; Thu, 23 Jun 2011 17:43:49 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QZrga-0007ci-Tt for emacs-devel@gnu.org; Thu, 23 Jun 2011 17:43:45 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.183]:46251 helo=ironport2-out.pppoe.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZrga-0007cK-At; Thu, 23 Jun 2011 17:43:40 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EAMSyA05FxKnm/2dsb2JhbABSpyt4iHPCBYYtBJ11hCc X-IronPort-AV: E=Sophos;i="4.65,415,1304308800"; d="scan'208";a="117032540" Original-Received: from 69-196-169-230.dsl.teksavvy.com (HELO ceviche.home) ([69.196.169.230]) by ironport2-out.pppoe.ca with ESMTP/TLS/ADH-AES256-SHA; 23 Jun 2011 17:43:37 -0400 Original-Received: by ceviche.home (Postfix, from userid 20848) id 09D03660F1; Thu, 23 Jun 2011 18:43:36 -0300 (ART) In-Reply-To: <87pqm6oryn.fsf@gnu.org> (Giuseppe Scrivano's message of "Wed, 22 Jun 2011 16:34:24 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.183 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:140932 Archived-At: > Is the following patch OK for trunk? Fine by me, yes, Stefan > === 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"))