Remove `|| flags & ALT == 0' which was an obscure no-op, not a

parenthesization/precedence bug.
This commit is contained in:
Bruce Evans 1995-03-12 13:53:51 +00:00
parent 9870b4d2de
commit 918bed7582
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7036

View file

@ -756,7 +756,7 @@ number: if ((dprec = prec) >= 0)
ox[0] = *cp++;
ox[1] = '.';
PRINT(ox, 2);
if (_double || flags & ALT == 0) {
if (_double) {
PRINT(cp, ndig-1);
} else /* 0.[0..] */
/* __dtoa irregularity */