From 5f3574cde153ee6a1413ef5fd49b2f2f7aa5f144 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sun, 1 Aug 2021 12:48:02 +0200 Subject: [PATCH] gdb commander, allow to comment arguments --- CHANGELOG.md | 1 + src/u_gdb.pas | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6d146fe..cc4777f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/u_gdb.pas b/src/u_gdb.pas index 9a44cee1..f6b26997 100644 --- a/src/u_gdb.pas +++ b/src/u_gdb.pas @@ -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);