mirror of https://gitlab.com/basile.b/dexed.git
gdb commander, allow to comment arguments
This commit is contained in:
parent
5c4152c99b
commit
5f3574cde1
|
@ -4,6 +4,7 @@
|
|||
|
||||
- Halstead metrics: show full function signatures.
|
||||
- DUB projects: added support for the _syntax_ build type. (#83)
|
||||
- GDB commander: arguments of the _Debugee Options_ can be temporarily deactivated by prepending `//`.
|
||||
|
||||
# v3.9.11
|
||||
|
||||
|
|
|
@ -2067,7 +2067,8 @@ begin
|
|||
else
|
||||
str += ' ';
|
||||
for i := 0 to o.arguments.Count-1 do
|
||||
str += o.arguments[i] + ' ';
|
||||
if not isStringDisabled(o.arguments[i]) then
|
||||
str += o.arguments[i] + ' ';
|
||||
str := fSyms.expand(str);
|
||||
end;
|
||||
gdbCommand('-exec-arguments '+ str + '> ' + fOutputName + '< ' + fInputName);
|
||||
|
|
Loading…
Reference in New Issue