mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 08:51:10 +02:00
parent
87a429377d
commit
88877284df
@ -534,6 +534,9 @@ begin
|
|||||||
begin
|
begin
|
||||||
sIdent:=Trim(Copy(sLine, 1, j - 1));
|
sIdent:=Trim(Copy(sLine, 1, j - 1));
|
||||||
sValue:=Trim(Copy(sLine, j + 1, Length(sLine) - j));
|
sValue:=Trim(Copy(sLine, j + 1, Length(sLine) - j));
|
||||||
|
J:=Length(sValue);
|
||||||
|
If (J>0) and (sValue[1]='"') and (sValue[J]='"') then
|
||||||
|
sValue:=Copy(sValue,2,J-2);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
oSection.KeyList.Add(TIniFileKey.Create(sIdent, sValue));
|
oSection.KeyList.Add(TIniFileKey.Create(sIdent, sValue));
|
||||||
|
Loading…
Reference in New Issue
Block a user