> 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 _______________________________________________ Pan-devel mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/pan-devel
