From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Greg Novak Newsgroups: gmane.emacs.help Subject: Re: browse-url Date: Tue, 5 Apr 2005 02:19:42 -0700 Message-ID: <20050405091942.GA26836@dionysus.ucolick.org> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1112695383 29250 80.91.229.2 (5 Apr 2005 10:03:03 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 5 Apr 2005 10:03:03 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Apr 05 12:03:00 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DIkro-0005OP-IF for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Apr 2005 12:01:06 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DIkQg-0005oM-CV for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Apr 2005 05:33:02 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DIkBV-0006n6-EX for help-gnu-emacs@gnu.org; Tue, 05 Apr 2005 05:17:22 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DIkAB-0005xB-Px for help-gnu-emacs@gnu.org; Tue, 05 Apr 2005 05:16:05 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DIk8g-0004o4-3q for help-gnu-emacs@gnu.org; Tue, 05 Apr 2005 05:14:26 -0400 Original-Received: from [128.114.22.17] (helo=dionysus.ucolick.org) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1DIkDy-00045k-JH for help-gnu-emacs@gnu.org; Tue, 05 Apr 2005 05:19:54 -0400 Original-Received: from dionysus.ucolick.org (localhost.localdomain [127.0.0.1]) by dionysus.ucolick.org (8.13.1/8.13.1) with ESMTP id j359Jg6T026848 for ; Tue, 5 Apr 2005 02:19:42 -0700 Original-Received: (from novak@localhost) by dionysus.ucolick.org (8.13.1/8.13.1/Submit) id j359JglV026847 for help-gnu-emacs@gnu.org; Tue, 5 Apr 2005 02:19:42 -0700 Original-To: help-gnu-emacs@gnu.org Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:25393 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:25393 * Joe Corneli wrote: > Both of these functions appear to require starting a new firefox. (??) By a cosmic coincidence I just put the following in my .emacs file, which opens a page in a new tab using an existing Firefox. (defun browse-url-firefox (url &optional new-window) (shell-command (concat "/usr/local/firefox/mozilla-xremote-client \"openurl(" url ",new-tab)\""))) (setq browse-url-browser-function 'browse-url-firefox) Greg