rc

[fork] interactive rc shell
Log | Files | Refs | README | LICENSE

commit a185d885b561333f5543536127dcd01d58374b50
parent 43c1019eca5e6d67e239cb38d54cd9c359577827
Author: tgoodwin <tgoodwin>
Date:   Tue, 21 Jul 1998 14:28:17 +0000

fix name conflict with lconf

Diffstat:
Mprint.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/print.c b/print.c @@ -21,7 +21,7 @@ static bool name(Format *format, int ignore) { \ Flag(uconv, FMT_unsigned) Flag(hconv, FMT_short) -Flag(lconv, FMT_long) +Flag(rc_lconv, FMT_long) #if HAVE_QUAD_T Flag(qconv, FMT_quad) @@ -203,7 +203,7 @@ static void inittab(void) { fmttab['u'] = uconv; fmttab['h'] = hconv; - fmttab['l'] = lconv; + fmttab['l'] = rc_lconv; fmttab['#'] = altconv; fmttab['-'] = leftconv; fmttab['.'] = dotconv;