]> git.eshelyaron.com Git - emacs.git/commitdiff
Restore leading space in movemail pop output
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Mar 2016 19:30:51 +0000 (11:30 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Mar 2016 19:31:22 +0000 (11:31 -0800)
* lib-src/movemail.c (movemail_strftime) [WINDOWSNT]: New function.
(strftime) [WINDOWSNT]: New macro.
(mbx_delimit_begin): Go back to previous version of this code,
now that there’s a special-purpose WINDOWSNT implementation
that should do the right thing.  That way, the output continues
to use leading space rather than leading zero for day of month.

lib-src/movemail.c

index efa0219e5874f9a9a4823f11c1f3bdfc8d456e94..873d85dfd77dbce81c036c2c6280b95693eeffea 100644 (file)
@@ -799,6 +799,24 @@ mbx_write (char *line, int len, FILE *mbf)
   return fwrite (line, 1, len, mbf) == len && 0 <= fputc ('\n', mbf);
 }
 
+#ifdef WINDOWSNT
+/* Work around MS-Windows lack of support for %e or %T with a
+   special-purpose strftime that assumes the exact format that
+   movemail uses.  */
+static size_t
+movemail_strftime (char *s, size_t size, char const *format,
+                  struct tm const *tm)
+{
+  size_t n = strftime (s, size, "From movemail %a %b %d %H:%M:%S %Y\n", tm);
+  char *mday = s + sizeof "From movemail Sun Jan " - 1;
+  if (*mday == '0')
+    *mday = ' ';
+  return n;
+}
+# undef strftime
+# define strftime movemail_strftime
+#endif
+
 static bool
 mbx_delimit_begin (FILE *mbf)
 {
@@ -809,7 +827,7 @@ mbx_delimit_begin (FILE *mbf)
 
   char fromline[100];
   if (! strftime (fromline, sizeof fromline,
-                 "From movemail %a %b %d %H:%M:%S %Y\n", ltime))
+                 "From movemail %a %b %e %T %Y\n", ltime))
     {
       errno = EOVERFLOW;
       return false;