mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 04:19:12 +02:00
debugger: don't double the single quote in strings shown to the user
git-svn-id: trunk@11119 -
This commit is contained in:
parent
75734cdf1d
commit
1f8d81dc9d
@ -881,7 +881,7 @@ function TGDBMIDebugger.GDBEvaluate(const AExpression: String;
|
||||
Result := Result + '''';
|
||||
end;
|
||||
Result := Result + AString[n];
|
||||
if AString[n] = '''' then Result := Result + '''';
|
||||
//if AString[n] = '''' then Result := Result + '''';
|
||||
end;
|
||||
else
|
||||
if InString
|
||||
|
Loading…
Reference in New Issue
Block a user