Gnus development mailing list
 help / color / mirror / Atom feed
From: Nelson Ferreira <nelson.ferreira@verizon.net>
Subject: Re: Firefox instead of Mozilla?
Date: Mon, 31 May 2004 23:01:55 -0400	[thread overview]
Message-ID: <33481.739255558$1086058942@news.gmane.org> (raw)
In-Reply-To: <86n03oecet.fsf@duchess.twilley.org> (Jack Twilley's message of "Mon, 31 May 2004 10:26:02 -0700")

"Jack" == Jack Twilley <jmt+usenet@twilley.org> 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



      parent reply	other threads:[~2004-06-01  3:01 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-05-31 17:26 Jack Twilley
2004-06-01  2:49 ` Steve Youngs
2004-06-01  3:01 ` Nelson Ferreira [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='33481.739255558$1086058942@news.gmane.org' \
    --to=nelson.ferreira@verizon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).