parent
ece94b224a
commit
ff622ee9b3
|
@ -1,5 +1,5 @@
|
|||
/* uLisp ARM Version 2.5b - www.ulisp.com
|
||||
David Johnson-Davies - www.technoblogy.com - 3rd February 2019
|
||||
/* uLisp ARM Version 2.5a - www.ulisp.com
|
||||
David Johnson-Davies - www.technoblogy.com - 1st December 2018
|
||||
|
||||
Licensed under the MIT license: https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
@ -3815,13 +3815,7 @@ void pmantissa (float f, pfun_t pfun) {
|
|||
int d = (int)(i / mul);
|
||||
pfun(d + '0');
|
||||
i = i - d * mul;
|
||||
if (i == 0) {
|
||||
if (!point) {
|
||||
for (int k=0; k<sig; k++) pfun('0');
|
||||
pfun('.'); pfun('0');
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (i == 0) { if (!point) { pfun('.'); pfun('0'); } return; }
|
||||
if (j == sig && sig >= 0) { pfun('.'); point = true; }
|
||||
mul = mul / 10;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue