Hi,

It's been a long time I lost track of the patch or whereabouts of the
code.. I'll look into it.

At Sat, 24 Oct 2009 12:30:45 -0400,
Peter S Galbraith wrote:
> 
> Hi Dancer,
> 
> The last time I heard from you, you had a fix that you were happy with.
> That was 3 years ago.  Would you mind applying your proposed fix in CVS
> to https://alioth.debian.org/projects/pkg-goodies-el/ ?
> 
> Thanks,
> Peter
> 
> Junichi Uekawa <[email protected]> wrote:
> 
> > 
> > > > > I was letting Junichi take care of all issues relative to this file,
> > > > > since he is the author and has CVS access.  I'll let him answer, but I
> > > > > think your suggestion is a good idea.
> > > > > 
> > > > > There's also this one to look at:
> > > > > 
> > > > >  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=364234
> > > > 
> > > > Humph, thanks.
> > > > 
> > > > considering
> > > >         
> > > > http://www.opengroup.org/onlinepubs/009695399/functions/strftime.html
> > > > 
> > > > and considering xemacs help for format-time-string claims:
> > > >         The number of options reflects the `strftime' function.
> > > > 
> > > > that's a bug on xemacs...
> > > 
> > > :-) 
> > > 
> > > Might still take a long time to get fixed if you choose to not work
> > > around it.  Up to you.  Please reassign the bug to xemacs if you decide
> > > to go that route.
> > 
> > I've discovered the mew hackers have done a better job (without fork).
> > 
> > (defsubst mew-time-tmzn-int ()
> >   (let ((tz (car (current-time-zone))))
> >     (if (< tz 0)
> >     (format "-%02d%02d" (/ (- tz) 3600) (/ (% (- tz) 3600) 60))
> >       (format "+%02d%02d" (/ tz 3600) (/ (% tz 3600) 60)))))
> > 
> > (defsubst mew-time-ctz-to-rfc (time)
> >   (let ((system-time-locale "C")
> >     (tmzn-int (mew-time-tmzn-int)))
> >     ;; XEmacs doesn't have %z
> >     (format (format-time-string "%a, %d %b %Y %T %%s (%Z)" time) tmzn-int)))
> > 
> > I'm inclined to use this instead.
> > 
> > regards,
> >     junichi
> > -- 
> > dan...@{debian.org,netfort.gr.jp}   Debian Project
> 



-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to