From 71ffab58c38a52b279c869dc3436ae99c785419e Mon Sep 17 00:00:00 2001 From: Tom de Vries Date: Mon, 17 Nov 2025 17:29:31 +0100 Subject: [PATCH] [gdb/cli] Add missing _() for dump commands Fix a missing _() for help strings for the dump memory/value commands. Tested on x86_64-linux. Approved-By: Tom Tromey --- gdb/cli/cli-dump.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gdb/cli/cli-dump.c b/gdb/cli/cli-dump.c index 5a8ddb7956f..73ba5724f97 100644 --- a/gdb/cli/cli-dump.c +++ b/gdb/cli/cli-dump.c @@ -577,15 +577,15 @@ INIT_GDB_FILE (cli_dump) 0/*allow-unknown*/, &cmdlist); - add_dump_command ("memory", dump_memory_command, "\ + add_dump_command ("memory", dump_memory_command, _("\ Write contents of memory to a raw binary file.\n\ Arguments are FILE START STOP. Writes the contents of memory within the\n\ -range [START .. STOP) to the specified FILE in raw target ordered bytes."); +range [START .. STOP) to the specified FILE in raw target ordered bytes.")); - add_dump_command ("value", dump_value_command, "\ + add_dump_command ("value", dump_value_command, _("\ Write the value of an expression to a raw binary file.\n\ Arguments are FILE EXPRESSION. Writes the value of EXPRESSION to\n\ -the specified FILE in raw target ordered bytes."); +the specified FILE in raw target ordered bytes.")); add_basic_prefix_cmd ("srec", no_class, _("Write target code/data to an srec file."), -- 2.47.3