]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Remove (or replace-with-TAB(s) to retain alignment)
authorJim Meyering <jim@meyering.net>
Tue, 15 Apr 2003 06:22:33 +0000 (06:22 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 15 Apr 2003 06:22:33 +0000 (06:22 +0000)
each sequence of spaces before a TAB character.

lib/strftime.c

index cf76c1f5e38e147ecb0f42264a1813cacfae7594..3600793ef531e86a93837a473e618e1b210614f6 100644 (file)
@@ -615,7 +615,7 @@ my_strftime (s, maxsize, format, tp extra_args LOCALE_PARAM)
       int pad = 0;             /* Padding for number ('-', '_', or 0).  */
       int modifier;            /* Field modifier ('E', 'O', or 0).  */
       int digits;              /* Max digits for numeric format.  */
-      int number_value;        /* Numeric value to be printed.  */
+      int number_value;                /* Numeric value to be printed.  */
       int negative_number;     /* 1 if the number is negative.  */
       const CHAR_T *subfmt;
       CHAR_T *bufp;
@@ -1029,7 +1029,7 @@ my_strftime (s, maxsize, format, tp extra_args LOCALE_PARAM)
            do
              *--bufp = u % 10 + L_('0');
            while ((u /= 10) != 0);
-         }
+         }
 
        do_number_sign_and_padding:
          if (negative_number)
@@ -1186,7 +1186,7 @@ my_strftime (s, maxsize, format, tp extra_args LOCALE_PARAM)
          DO_NUMBER (2, tp->tm_sec);
 
        case L_('s'):           /* GNU extension.  */
-         {
+         {
            struct tm ltm;
            time_t t;