* [PATCH] Fix help formatting for string and filename options
@ 2025-01-13 14:33 Tom Tromey
2025-01-15 2:09 ` Kevin Buettner
0 siblings, 1 reply; 2+ messages in thread
From: Tom Tromey @ 2025-01-13 14:33 UTC (permalink / raw)
To: gdb-patches; +Cc: Tom Tromey
I happened to notice that "help add-inferior" said:
-execFILENAME
FILENAME is the file name of the executable to use as the
main program.
This is missing a space after "-exec". This patch fixes the bug.
If ok'd on time I plan to check this in to the gdb-16 branch as well.
---
gdb/cli/cli-option.c | 4 ++--
gdb/testsuite/gdb.base/options.exp | 6 ++++++
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/gdb/cli/cli-option.c b/gdb/cli/cli-option.c
index 10a59449f7c..34ac1642b84 100644
--- a/gdb/cli/cli-option.c
+++ b/gdb/cli/cli-option.c
@@ -832,10 +832,10 @@ append_val_type_str (std::string &help, const option_def &opt,
help += "NUMBER|#RRGGBB";
break;
case var_string:
- help += "STRING";
+ help += " STRING";
break;
case var_filename:
- help += "FILENAME";
+ help += " FILENAME";
break;
default:
break;
diff --git a/gdb/testsuite/gdb.base/options.exp b/gdb/testsuite/gdb.base/options.exp
index e1ad61e6470..a1ca39eab11 100644
--- a/gdb/testsuite/gdb.base/options.exp
+++ b/gdb/testsuite/gdb.base/options.exp
@@ -1162,3 +1162,9 @@ test-thread-apply
# Basic "info threads" integration tests.
test-info-threads
+
+# There was a bug where the "metasyntactic variable" was glued to the
+# option.
+gdb_test "help maintenance test-options unknown-is-operand" \
+ "-string STRING.*-filename FILENAME.*" \
+ "option help has spaces"
--
2.47.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-01-15 3:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-13 14:33 [PATCH] Fix help formatting for string and filename options Tom Tromey
2025-01-15 2:09 ` Kevin Buettner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox