(my_strftime): Rewrite the previous change slightly,
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 15 Sep 2005 18:47:56 +0000 (18:47 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 15 Sep 2005 18:47:56 +0000 (18:47 +0000)
to make it a bit faster and (I hope) clearer.

lib/strftime.c

index 0f33820..94eb4ab 100644 (file)
@@ -492,7 +492,7 @@ my_strftime (CHAR_T *s, size_t maxsize, const CHAR_T *format,
       int width = -1;
       bool to_lowcase = false;
       bool to_uppcase = false;
-      size_t colons = 0;
+      size_t colons;
       bool change_case = false;
       int format_char;
 
@@ -643,19 +643,6 @@ my_strftime (CHAR_T *s, size_t maxsize, const CHAR_T *format,
          break;
        }
 
-      /* Parse the colons of %:::z *after* the optional field width,
-        not before, so we accept %9:z, not %:9z.  */
-      {
-       const CHAR_T *q;
-       for (q = f; *q == L_(':') && q - f < 3; q++)
-         ; /* empty */
-       if (*q == L_('z'))
-         {
-           colons = q - f;
-           f = q;
-         }
-      }
-
       /* Now do the specified format.  */
       format_char = *f;
       switch (format_char)
@@ -1320,7 +1307,20 @@ my_strftime (CHAR_T *s, size_t maxsize, const CHAR_T *format,
 #endif
          break;
 
+       case L_(':'):
+         /* :, ::, and ::: are valid only just before 'z'.
+            :::: etc. are rejected later.  */
+         for (colons = 1; f[colons] == L_(':'); colons++)
+           continue;
+         if (f[colons] != L_('z'))
+           goto bad_format;
+         f += colons;
+         goto do_z_conversion;
+
        case L_('z'):
+         colons = 0;
+
+       do_z_conversion:
          if (tp->tm_isdst < 0)
            break;