mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-19 00:09:26 +02:00
Debugger: GDBMIDebugger better handling of space in filenames / Fix problem from Revision: 44429 / some filenames end up forever pending
git-svn-id: trunk@44468 -
This commit is contained in:
parent
3d8ea62914
commit
ef91216989
@ -8913,11 +8913,11 @@ begin
|
||||
if not Result then exit;
|
||||
|
||||
s1 := '';
|
||||
if dfForceBreak in FTheDebugger.FDebuggerFlags then s1 := '-f';
|
||||
s2 := StringReplace(FSource, '\', '/', [rfReplaceAll]);
|
||||
//s2 := StringReplace(s2, '"', '\"', [rfReplaceAll]);
|
||||
Result := ExecuteCommand('-break-insert %s "\"%s\":%d"', [s1, s2, FLine], R);
|
||||
|
||||
if dfForceBreak in FTheDebugger.FDebuggerFlags then s1 := '-f';
|
||||
if (not Result) or (R.State = dsError) then
|
||||
Result := ExecuteCommand('-break-insert %s %s:%d', [s1, ExtractFileName(FSource), FLine], R);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user