mirror of https://gitlab.com/basile.b/dexed.git
#97, remove unecessary wait
This commit is contained in:
parent
46655ee919
commit
d9216222ac
|
@ -1314,13 +1314,10 @@ begin
|
|||
fSilentPause := false;
|
||||
end;
|
||||
gdbCommand('break ' + fname + ':' + intToStr(line));
|
||||
if r then
|
||||
waitCommandProcessed;
|
||||
if r then
|
||||
begin
|
||||
fSilentPause := true;
|
||||
gdbCommand('-exec-continue --all', @gdboutJsonize);
|
||||
waitCommandProcessed;
|
||||
fSilentPause := false;
|
||||
end;
|
||||
end;
|
||||
|
@ -1343,13 +1340,10 @@ begin
|
|||
fSilentPause := false;
|
||||
end;
|
||||
gdbCommand('clear ' + fname + ':' + intToStr(line));
|
||||
if r then
|
||||
waitCommandProcessed;
|
||||
if r then
|
||||
begin
|
||||
fSilentPause := true;
|
||||
gdbCommand('-exec-continue --all', @gdboutJsonize);
|
||||
waitCommandProcessed;
|
||||
fSilentPause := false;
|
||||
end;
|
||||
end;
|
||||
|
|
Loading…
Reference in New Issue