summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-04-15 06:22:33 +0000
committerJim Meyering <jim@meyering.net>2003-04-15 06:22:33 +0000
commit7e4874c0d8020e8d8faa058cb1b27fb372bf31a9 (patch)
tree806a337c2eed55cb1ce68da17213ba38a6bc39ce
parent533c50216ed6fbe04d5f1ea88791491a19737647 (diff)
downloadcoreutils-7e4874c0d8020e8d8faa058cb1b27fb372bf31a9.tar.xz
Remove (or replace-with-TAB(s) to retain alignment)
each sequence of spaces before a TAB character.
-rw-r--r--lib/strftime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/strftime.c b/lib/strftime.c
index cf76c1f5e..3600793ef 100644
--- a/lib/strftime.c
+++ b/lib/strftime.c
@@ -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;