* Set DecimalSeparator to be locale independent.

git-svn-id: trunk@5959 -
This commit is contained in:
yury 2007-01-14 01:04:45 +00:00
parent 97e6235535
commit 848d94f573

View File

@ -3,6 +3,7 @@ uses sysutils;
var
s: ansistring;
begin
DecimalSeparator:='.';
s := format('%e',[1.72]);
{$ifdef FPC_HAS_TYPE_EXTENDED}
if s <> '1.7200000000000000E+000' then