From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/36679 Path: main.gmane.org!not-for-mail From: ShengHuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: Adding weekday to Date header Date: Thu, 21 Jun 2001 10:19:51 -0700 Message-ID: <2n4rt9eonc.fsf@piglet.jia.vnet> References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035172227 9901 80.91.224.250 (21 Oct 2002 03:50:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:50:27 +0000 (UTC) Return-Path: Return-Path: Original-Received: (qmail 21167 invoked from network); 21 Jun 2001 17:22:05 -0000 Original-Received: from unknown (HELO zsh.2y.net) (131.241.79.242) by gnus.org with SMTP; 21 Jun 2001 17:22:05 -0000 Original-Received: (from zsh@localhost) by zsh.2y.net (8.11.2/8.11.2) id f5LHJp300910; Thu, 21 Jun 2001 10:19:51 -0700 Original-To: ding@gnus.org X-Attribution: ZSH X-Face: 'IF:e51ib'Qbl^(}l^&4-J`'P!@[4~O|&k#:@Gld#b/]oMq&`&FVY._3+b`mzp~Jeve~/#/ ERD!OTe<86UhyN=l`mrPY)M7_}`Ktt\K+58Z!hu7>qU,i.N7TotU[FYE(f1;}`g2xj!u*l`^&=Q!g{ *q|ddto|nkt"$r,K$[)"|6,elPH= GJ6Q In-Reply-To: ("Jason R. Mastaler"'s message of "Wed, 20 Jun 2001 16:43:44 -0600") User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/21.0.104 Original-Lines: 28 Xref: main.gmane.org gmane.emacs.gnus.general:36679 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:36679 "Jason R. Mastaler" writes: > When reading past messages of mine, I'm getting really tired of typing > `cal' to find out what day of the week that was. > > The following patch simply adds the weekday to the "Date" header that > gnus generates. Please consider it for committal. > > > Index: lisp/message.el > =================================================================== > RCS file: /usr/local/cvsroot/gnus/lisp/message.el,v > retrieving revision 6.88 > diff -u -r6.88 message.el > --- lisp/message.el 2001/06/19 19:44:00 6.88 >+++ lisp/message.el 2001/06/20 22:26:55 > @@ -3208,6 +3208,7 @@ > (setq sign "-") > (setq zone (- zone))) > (concat >+ (format-time-string "%a, " now) > (format-time-string "%d" now) > ;; The month name of the %b spec is locale-specific. Pfff. > (format " %s " Added. ShengHuo