* Fix formatfloat in case E not followed by +/- (bug id 35297)

git-svn-id: trunk@41803 -
This commit is contained in:
michael 2019-03-30 15:47:50 +00:00
parent ee177eab1f
commit 1951aff5a4

View File

@ -369,6 +369,8 @@ begin
'e', 'E':
begin
ToResult(C); // Always needed
if IsScientific then
begin
Inc(I);
if I<=Section.Length then
begin
@ -382,6 +384,7 @@ begin
end;
end;
end;
end;
else
ToResult(C);
end;