* tab2space used zeroes instead of spaces. (mantis 13024)

git-svn-id: trunk@12583 -
This commit is contained in:
marco 2009-01-22 22:09:21 +00:00
parent aecbef27b2
commit 9ff8491cee

View File

@ -976,7 +976,7 @@ begin
begin
Result[I]:=' ';
If (Numb>1) then
Insert(StringOfChar('0',Numb-1),Result,I);
Insert(StringOfChar(' ',Numb-1),Result,I);
Inc(I,Numb);
end;
end;