From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/20325 Path: main.gmane.org!not-for-mail From: Michael Cook Newsgroups: gmane.emacs.gnus.general Subject: %f of gnus-summary-line-format Date: 15 Jan 1999 11:13:35 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: <80sodch5u8.fsf@pepsi.clearviewtech.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 X-Trace: main.gmane.org 1035158634 17110 80.91.224.250 (21 Oct 2002 00:03:54 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:03:54 +0000 (UTC) Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id LAA14788 for ; Fri, 15 Jan 1999 11:16:20 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.1/8.9.1) with ESMTP id KAB03189; Fri, 15 Jan 1999 10:15:42 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 15 Jan 1999 10:15:47 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id KAA01822 for ; Fri, 15 Jan 1999 10:15:35 -0600 (CST) Original-Received: from tma-1.sightpath.com (tma-1.sightpath.com [208.246.45.91]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id LAA14758 for ; Fri, 15 Jan 1999 11:15:26 -0500 (EST) Original-Received: from pepsi.clearviewtech.com (IDENT:cook@pepsi.sightpath.com [208.246.45.86]) by tma-1.sightpath.com (8.9.1a/8.9.1) with ESMTP id LAA16879 for ; Fri, 15 Jan 1999 11:14:09 -0500 (EST) Original-Received: (from cook@localhost) by pepsi.clearviewtech.com (8.8.7/8.8.7) id LAA27806; Fri, 15 Jan 1999 11:13:35 -0500 Original-To: ding@gnus.org Original-Lines: 22 User-Agent: Gnus/5.070069 (Pterodactyl Gnus v0.69) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:20325 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:20325 I'm trying to get %f of gnus-summary-line-format working. The help text says: %f Contents of the From: or To: headers (string) So, in my gnus-summary-line-format, I changed the %-20,20n to %-20,20f. But that change had no apparent effect in the subsequently-generated *Summary* buffers. Poking around in gnus-sum.el, I found the function gnus-summary-from-or-to-or-newsgroups. This function uses the expression `(mail-header-extra header)' repeatedly. But that expression always seems to evaluate to nil. And so gnus-summary-from-or-to-or-newsgroups just always seems to return the usual `mail-header-from' value. Am I misunderstanding how %f is supposed to work? Or is there a bug here somewhere. (I'm using nnml groups, pgnus-0.69, and EMACS 20.3.1.) M.