diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-20 05:23:03 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-20 05:23:03 +0000 |
commit | 6324a838a3620367b54b76571ed4ca315d1e2ca6 (patch) | |
tree | b35b28f920c619efa62d955c9356391ff4109185 /time | |
parent | 602b6b0fe4976bbb17347fda33e6feac88b91906 (diff) | |
download | glibc-6324a838a3620367b54b76571ed4ca315d1e2ca6.tar.gz |
Update.
1999-11-18 Paul Eggert <eggert@twinsun.com>
* time/strftime.c (my_strftime): Some old compilers object to
'\a', so don't bother optimizing for it.
Diffstat (limited to 'time')
-rw-r--r-- | time/strftime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/time/strftime.c b/time/strftime.c index 3c8cfeed17..7de2e84c50 100644 --- a/time/strftime.c +++ b/time/strftime.c @@ -568,7 +568,7 @@ my_strftime (s, maxsize, format, tp ut_argument) case L_('%'): break; - case L_('\a'): case L_('\b'): case L_('\t'): case L_('\n'): + case L_('\b'): case L_('\t'): case L_('\n'): case L_('\v'): case L_('\f'): case L_('\r'): case L_(' '): case L_('!'): case L_('"'): case L_('#'): case L_('&'): case L_('\''): case L_('('): case L_(')'): case L_('*'): case L_('+'): |