From: Tom de Vries Date: Mon, 17 Nov 2025 16:29:31 +0000 (+0100) Subject: [gdb/cli] Add missing _() for dump commands X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71ffab58c38a52b279c869dc3436ae99c785419e;p=thirdparty%2Fbinutils-gdb.git [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 --- 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."),