mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 14:27:59 +02:00
* Fix syntax error
This commit is contained in:
parent
e3d3fe654c
commit
9fe4e1247f
@ -2429,7 +2429,7 @@ var
|
||||
begin
|
||||
quoted:=false;
|
||||
// If first and last are quotes, we assume it is already quoted.
|
||||
if Length(S)>1 and (S[1]='"') and (S[Length(S)]='"') then
|
||||
if (Length(S)>1) and (S[1]='"') and (S[Length(S)]='"') then
|
||||
Exit(S);
|
||||
s1:='"';
|
||||
for i:=1 to length(s) do
|
||||
|
Loading…
Reference in New Issue
Block a user