mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-23 12:11:27 +02:00
+ Fixed error when printing zero. len was calculated wron.
This commit is contained in:
parent
6a1ca57304
commit
6ed3f994e1
@ -101,7 +101,7 @@ begin
|
||||
{ this is also the maximal number of decimals !!}
|
||||
if f>currprec then f:=currprec;
|
||||
{ when doing a fixed-point, we need less characters.}
|
||||
if (f<0) or ((d>maxexp) or (d<minexp)) then
|
||||
if (f<0) or ( (d<>0) and ((d>maxexp) or (d<minexp))) then
|
||||
begin
|
||||
{ determine maximal number of decimals }
|
||||
if (len>=0) and (len<minlen) then len:=minlen;
|
||||
@ -198,7 +198,10 @@ end;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.3 1998-05-12 10:42:45 peter
|
||||
Revision 1.4 1998-06-18 08:15:33 michael
|
||||
+ Fixed error when printing zero. len was calculated wron.
|
||||
|
||||
Revision 1.3 1998/05/12 10:42:45 peter
|
||||
* moved getopts to inc/, all supported OS's need argc,argv exported
|
||||
+ strpas, strlen are now exported in the systemunit
|
||||
* removed logs
|
||||
|
Loading…
Reference in New Issue
Block a user