From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/5824 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.user Subject: Re: [XEmacs] problem with date Date: Wed, 05 Oct 2005 10:17:26 +0900 Organization: Emacsen advocacy group Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1138671477 28977 80.91.229.2 (31 Jan 2006 01:37:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:37:57 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:35:53 2006 Original-Path: quimby.gnus.org!newsfeed.gazeta.pl!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-X-Trace: individual.net gL0DvIWbA52ouIVRhu5guwlbdJYIBZ6fVaGsDXUr0Ki4JKREA= 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.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:yeABClq8sZ1oeNNh5DpIUc2EWXs= Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:5966 Original-Lines: 30 X-Gnus-Article-Number: 5966 Tue Jan 17 17:35:53 2006 Xref: news.gmane.org gmane.emacs.gnus.user:5824 Archived-At: >>>>> In Sébastien Kirche wrote: > Hi, > I am currently giving a try with XEmacs while i am a regular GNU/Emacs > user and i have a problem with the Date: header. > As you can see, instead of having the timezone at the end of the field > (I am currently in +0200) i have a weird 'z' letter. > This result in displaying the date of the message in the summary buffer > 2 hours later than the actual date. > My Gnus is from CVS, updated yesterday. My best guess is that it is caused by the message-make-date function defined in message.el. It is for only Emacs[1] but should be replaced by message-xmas-make-date for XEmacs defined in messagexmas.el. message.elc seems to certainly load messagexmas.elc and replace it by running the following section: (when (featurep 'xemacs) (require 'messagexmas) (message-xmas-redefine)) Even if message.elc is reloaded, it should work. So, I don't see why such a problem occurs. [1] The %z spec which XEmacs doesn't support is given to the format-time-string function there.