From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/85813 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: message-citation-line-format - should %F have a fall back? Date: Thu, 26 Feb 2015 09:41:01 +0900 Organization: Emacsen advocacy group Message-ID: References: <87k2z5rar3.fsf@topper.koldfront.dk> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1424911349 27276 80.91.229.3 (26 Feb 2015 00:42:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 26 Feb 2015 00:42:29 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M34052@lists.math.uh.edu Thu Feb 26 01:42:19 2015 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YQmWu-00020L-6N for ding-account@gmane.org; Thu, 26 Feb 2015 01:42:16 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1YQmVx-0002GM-97; Wed, 25 Feb 2015 18:41:17 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1YQmVu-0002Fz-9x for ding@lists.math.uh.edu; Wed, 25 Feb 2015 18:41:14 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1.2:DHE-RSA-AES128-SHA:128) (Exim 4.84) (envelope-from ) id 1YQmVq-0007bG-VG for ding@lists.math.uh.edu; Wed, 25 Feb 2015 18:41:11 -0600 Original-Received: from memphis-mail.hostforweb.net ([216.246.47.48] helo=memphis.hostforweb.net) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1YQmVo-0002eG-QR for ding@gnus.org; Thu, 26 Feb 2015 01:41:08 +0100 Original-Received: from localhost ([127.0.0.1]:51477) by memphis.hostforweb.net with smtp (Exim 4.84) (envelope-from ) id 1YQmVi-001GYq-BC for ding@gnus.org; Wed, 25 Feb 2015 18:41:02 -0600 X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.130012 (=?iso-2022-jp?B?GyRCPz8bKEI=?= Gnus v0.12) Emacs/25.0.50 (i686-pc-cygwin) Cancel-Lock: sha1:DJejeW+DA0MLQGCKILRKP9WNyi4= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - memphis.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Get-Message-Sender-Via: memphis.hostforweb.net: acl_c_authenticated_local_user: yamaokac X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -0.0 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:85813 Archived-At: On Wed, 25 Feb 2015 21:34:24 +0100, Adam Sj=C3=B8gren wrote: > Should %F in message-citation-line-format fall back to something > different than nil, if no first name can be detected? The most corner=E2=80=90cutting way would be: --- message.el~ 2015-01-29 02:00:24.303787500 +0000 +++ message.el 2015-02-26 00:40:28.328441100 +0000 @@ -4085,3 +4085,3 @@ (push ?E lst) (push "" lst) - (push ?F lst) (push fname lst) + (push ?F lst) (push (or fname name-or-net) lst) ;; We might want to use "" instead of "" later. This is what %N does.