mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 10:45:08 +02:00
parent
1ad6417f7f
commit
15ed6ed527
@ -567,7 +567,10 @@ begin
|
||||
sIdent:=Trim(Copy(sLine, 1, j - 1));
|
||||
sValue:=Trim(Copy(sLine, j + 1, Length(sLine) - j));
|
||||
J:=Length(sValue);
|
||||
If (J>0) and (sValue[1]='"') and (sValue[J]='"') then
|
||||
// Joost, 2-jan-2007: The check (J>1) is there for the case that
|
||||
// the value consist of a single double-quote character. (see
|
||||
// mantis bug 6555)
|
||||
If (J>1) and (sValue[1]='"') and (sValue[J]='"') then
|
||||
sValue:=Copy(sValue,2,J-2);
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user