From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/27009 Path: main.gmane.org!not-for-mail From: wmperry@aventail.com (William M. Perry) Newsgroups: gmane.emacs.gnus.general Subject: Re: URL buttons and new browser windows... Date: 17 Nov 1999 07:27:46 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: <86ogctcngd.fsf@megalith.bp.aventail.com> References: <8766z23r6e.fsf@inanna.danann.net> <86g0y6yn3a.fsf@megalith.bp.aventail.com> Reply-To: wmperry@aventail.com NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035164111 22376 80.91.224.250 (21 Oct 2002 01:35:11 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:35:11 +0000 (UTC) Cc: The Gnus Mailing List Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id HAA15586 for ; Wed, 17 Nov 1999 07:26:18 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id GAB03160; Wed, 17 Nov 1999 06:26:16 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 17 Nov 1999 06:26:35 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id GAA00035 for ; Wed, 17 Nov 1999 06:26:24 -0600 (CST) Original-Received: from biff.kiva.net (biff.kiva.net [206.97.64.31]) by sclp3.sclp.com (8.8.5/8.8.5) with SMTP id HAA15580 for ; Wed, 17 Nov 1999 07:25:55 -0500 (EST) Original-Received: (qmail 31006 invoked from network); 17 Nov 1999 12:24:36 -0000 Original-Received: from usrpri2-27.kiva.net (HELO megalith.bp.aventail.com) (206.97.75.92) by biff.kiva.net with SMTP; 17 Nov 1999 12:24:36 -0000 Original-Received: (from wmperry@localhost) by megalith.bp.aventail.com (8.9.3/8.9.3) id HAA02739; Wed, 17 Nov 1999 07:27:46 -0500 Original-To: Toby Speight X-Face: O~Rn;(l][/-o1sALg4A@xpE:9-"'IR[%;,,!m7 writes: > Bill> William M. Perry > > 0> In article <86g0y6yn3a.fsf@megalith.bp.aventail.com>, Bill wrote: > > Bill> I'd vote for Gnus to just use browse-url... why on earth is it > Bill> trying to call the browse-url-browser-function directly? That > Bill> seems kind of... uh, silly? > > Especially since it doesn't check for (listp browse-url-browser-function). Well, it does do that, which is the really weird part: (defun gnus-button-url (address) "Browse ADDRESS." ;; In Emacs 20, `browse-url-browser-function' may be an alist. (if (listp browse-url-browser-function) (browse-url address) (funcall browse-url-browser-function address))) It does the 'right' thing if it is a list, but not if it is just a function. Deeply weird. -bp