diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-14 18:10:11 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-14 18:10:11 +0000 |
commit | 1a966eabdfe5d28f2e17f73988c9124cc5b76f31 (patch) | |
tree | 326d0cfbf97d88b2b9a3c31ab76328966afbef03 /gdb/cli/cli-dump.c | |
parent | 7915a72c7f0c255cfcf47c1b186d3739aeafe4da (diff) | |
download | gdb-1a966eabdfe5d28f2e17f73988c9124cc5b76f31.zip gdb-1a966eabdfe5d28f2e17f73988c9124cc5b76f31.tar.gz gdb-1a966eabdfe5d28f2e17f73988c9124cc5b76f31.tar.bz2 |
2005-02-14 Andrew Cagney <cagney@gnu.org>
Mark up add_cmd.
* arch-utils.c, avr-tdep.c, breakpoint.c, corefile.c: Update.
* cp-abi.c, cp-namespace.c, cp-support.c, dummy-frame.c: Update.
* exec.c, gnu-nat.c, go32-nat.c, hppa-tdep.c, infcmd.c: Update.
* infrun.c, interps.c, macrocmd.c, maint.c, memattr.c: Update.
* mips-tdep.c, ocd.c, osabi.c, printcmd.c, regcache.c: Update.
* reggroups.c, remote-fileio.c, remote-rdi.c, remote.c: Update.
* sol-thread.c, source.c, stack.c, symfile-mem.c: Update.
* symfile.c, thread.c, tracepoint.c, valprint.c, value.c: Update.
* win32-nat.c, cli/cli-cmds.c, cli/cli-dump.c: Update.
* cli/cli-logging.c, tui/tui-regs.c: Update.
Diffstat (limited to 'gdb/cli/cli-dump.c')
-rw-r--r-- | gdb/cli/cli-dump.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/gdb/cli/cli-dump.c b/gdb/cli/cli-dump.c index 3a44698..e1abdc6 100644 --- a/gdb/cli/cli-dump.c +++ b/gdb/cli/cli-dump.c @@ -726,64 +726,64 @@ Append target code/data to a raw binary file.", 0 /*allow-unknown*/, &append_cmdlist); - add_cmd ("memory", all_commands, dump_srec_memory, "\ + add_cmd ("memory", all_commands, dump_srec_memory, _("\ Write contents of memory to an srec file.\n\ Arguments are FILE START STOP. Writes the contents of memory\n\ -within the range [START .. STOP) to the specifed FILE in srec format.", +within the range [START .. STOP) to the specifed FILE in srec format."), &srec_cmdlist); - add_cmd ("value", all_commands, dump_srec_value, "\ + add_cmd ("value", all_commands, dump_srec_value, _("\ Write the value of an expression to an srec file.\n\ Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\ -to the specified FILE in srec format.", +to the specified FILE in srec format."), &srec_cmdlist); - add_cmd ("memory", all_commands, dump_ihex_memory, "\ + add_cmd ("memory", all_commands, dump_ihex_memory, _("\ Write contents of memory to an ihex file.\n\ Arguments are FILE START STOP. Writes the contents of memory within\n\ -the range [START .. STOP) to the specifed FILE in intel hex format.", +the range [START .. STOP) to the specifed FILE in intel hex format."), &ihex_cmdlist); - add_cmd ("value", all_commands, dump_ihex_value, "\ + add_cmd ("value", all_commands, dump_ihex_value, _("\ Write the value of an expression to an ihex file.\n\ Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\ -to the specified FILE in intel hex format.", +to the specified FILE in intel hex format."), &ihex_cmdlist); - add_cmd ("memory", all_commands, dump_tekhex_memory, "\ + add_cmd ("memory", all_commands, dump_tekhex_memory, _("\ Write contents of memory to a tekhex file.\n\ Arguments are FILE START STOP. Writes the contents of memory\n\ -within the range [START .. STOP) to the specifed FILE in tekhex format.", +within the range [START .. STOP) to the specifed FILE in tekhex format."), &tekhex_cmdlist); - add_cmd ("value", all_commands, dump_tekhex_value, "\ + add_cmd ("value", all_commands, dump_tekhex_value, _("\ Write the value of an expression to a tekhex file.\n\ Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\ -to the specified FILE in tekhex format.", +to the specified FILE in tekhex format."), &tekhex_cmdlist); - add_cmd ("memory", all_commands, dump_binary_memory, "\ + add_cmd ("memory", all_commands, dump_binary_memory, _("\ Write contents of memory to a raw binary file.\n\ Arguments are FILE START STOP. Writes the contents of memory\n\ -within the range [START .. STOP) to the specifed FILE in binary format.", +within the range [START .. STOP) to the specifed FILE in binary format."), &binary_dump_cmdlist); - add_cmd ("value", all_commands, dump_binary_value, "\ + add_cmd ("value", all_commands, dump_binary_value, _("\ Write the value of an expression to a raw binary file.\n\ Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\ -to the specified FILE in raw target ordered bytes.", +to the specified FILE in raw target ordered bytes."), &binary_dump_cmdlist); - add_cmd ("memory", all_commands, append_binary_memory, "\ + add_cmd ("memory", all_commands, append_binary_memory, _("\ Append 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 specifed FILE in raw target ordered bytes.", +range [START .. STOP) to the specifed FILE in raw target ordered bytes."), &binary_append_cmdlist); - add_cmd ("value", all_commands, append_binary_value, "\ + add_cmd ("value", all_commands, append_binary_value, _("\ Append the value of an expression to a raw binary file.\n\ Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\ -to the specified FILE in raw target ordered bytes.", +to the specified FILE in raw target ordered bytes."), &binary_append_cmdlist); c = add_com ("restore", class_vars, restore_command, |