From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/57789 Path: main.gmane.org!not-for-mail From: Nelson Ferreira Newsgroups: gmane.emacs.gnus.general Subject: Re: Firefox instead of Mozilla? Date: Mon, 31 May 2004 23:01:55 -0400 Sender: ding-owner@lists.math.uh.edu Message-ID: <33481.739255558$1086058942@news.gmane.org> References: <86n03oecet.fsf@duchess.twilley.org> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1086058942 11434 80.91.224.253 (1 Jun 2004 03:02:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 1 Jun 2004 03:02:22 +0000 (UTC) Original-X-From: ding-owner+M6330@lists.math.uh.edu Tue Jun 01 05:02:14 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BUzXZ-0006fB-00 for ; Tue, 01 Jun 2004 05:02:14 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1BUzXO-0002an-00; Mon, 31 May 2004 22:02:02 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BUzXK-0002ai-00 for ding@lists.math.uh.edu; Mon, 31 May 2004 22:01:58 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BUzXK-0000Bb-1B for ding@lists.math.uh.edu; Mon, 31 May 2004 22:01:58 -0500 Original-Received: from tuxie.homelinux.net (pool-68-237-120-213.ny325.east.verizon.net [68.237.120.213]) by justine.libertine.org (Postfix) with ESMTP id DA09E3A0036 for ; Mon, 31 May 2004 22:01:56 -0500 (CDT) Original-Received: (from njsf@localhost) by tuxie.homelinux.net (8.11.6/8.9.3) id i5131tB02606; Mon, 31 May 2004 22:01:55 -0500 X-Msgid-Archive-Tag: _-nf--_xmat_-m:gnus_--- Original-To: ding@gnus.org X-Attribution: njsf In-Reply-To: <86n03oecet.fsf@duchess.twilley.org> (Jack Twilley's message of "Mon, 31 May 2004 10:26:02 -0700") User-Agent: Gnus/5.110003 (No Gnus v0.3) XEmacs/21.5 (chayote, linux) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:57789 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:57789 "Jack" == Jack Twilley writes: Jack> I would like my click-on-the-link behavior to open Firefox Jack> instead of Mozilla. I can't seem to find the bit that Jack> actually calls Mozilla so I can fix it. Help? Hi! I use this to open in a new Tab. I am sure you'll be able to adapt to call firefox... (defun browse-url-mozilla-new-tab (url &optional new-window) ;; new-window ignored "Open URL in a new tab in Mozilla." (interactive (browse-url-interactive-arg "URL: ")) (unless (string= "" (shell-command-to-string (concat "mozilla -remote 'openURL(" url ",new-tab)'"))) (message "Starting Mozilla...") (start-process (concat "mozilla " url) nil "mozilla" url) (message "Starting Mozilla...done"))) (setq browse-url-browser-function (quote browse-url-mozilla-new-tab)) [...] -- Nelson Ferreira