From 6324a838a3620367b54b76571ed4ca315d1e2ca6 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 20 Nov 1999 05:23:03 +0000 Subject: [PATCH] Update. 1999-11-18 Paul Eggert * time/strftime.c (my_strftime): Some old compilers object to '\a', so don't bother optimizing for it. --- ChangeLog | 5 +++++ time/strftime.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 08a8ea9..5daab0a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-11-18 Paul Eggert + + * time/strftime.c (my_strftime): Some old compilers object to + '\a', so don't bother optimizing for it. + 1999-11-19 Ulrich Drepper * sysdeps/unix/sysv/linux/setrlimit.c (__setrlimit): Don't modify diff --git a/time/strftime.c b/time/strftime.c index 3c8cfee..7de2e84 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_('+'): -- 2.7.4