pan-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Pan-devel] date format bug found


From: Charles Kerr
Subject: Re: [Pan-devel] date format bug found
Date: Fri, 7 Apr 2006 07:50:09 -0500 (CDT)
User-agent: SquirrelMail/1.4.6 [CVS]

> At least on windows dates in the header pane are shown without the
> hour.  The problem is that the format string are using lower case L when
> they should be using upper case I i.  It's probably caused by the font
> in the editor sicne I & l look the same with some fonts.

Yes.  The problem here is that the strftime checks in autoconf didn't
take into account win32's handling of %l and %k.  Make this change to
configure.in:

-  exit (strstr(buf, "l") || strstr(buf, "k"));
+  exit (strstr(buf, "l") || strstr(buf, "k")) || !strcmp(buf, " "));

Charles





reply via email to

[Prev in Thread] Current Thread [Next in Thread]