diff options
author | Michael Snyder <msnyder@vmware.com> | 2011-01-06 00:57:05 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2011-01-06 00:57:05 +0000 |
commit | 9a2b4c1ba76f3dff85f08faff0dd08849c2905fb (patch) | |
tree | f1207a32403657c19e469f90bc242979ed26ed6e /gdb/cli/cli-dump.c | |
parent | 493e2a69a40a30bcabe6ad5390dbae9bab98015d (diff) | |
download | gdb-9a2b4c1ba76f3dff85f08faff0dd08849c2905fb.zip gdb-9a2b4c1ba76f3dff85f08faff0dd08849c2905fb.tar.gz gdb-9a2b4c1ba76f3dff85f08faff0dd08849c2905fb.tar.bz2 |
2011-01-05 Michael Snyder <msnyder@vmware.com>
* cli/cli-cmds.c: Shorten lines of >= 80 columns.
* cli/cli-decode.c: Ditto.
* cli/cli-dump.c: Ditto.
* cli/cli-logging.c: Ditto.
* cli/cli-script.c: Ditto.
* cli/cli-setshow.c: Ditto.
* common/signals.c: Ditto.
* mi/mi-cmd-break.c: Ditto.
* mi/mi-cmd-disas.c: Ditto.
* mi/mi-cmd-stack.c: Ditto.
* mi/mi-cmd-var.c: Ditto.
* mi/mi-cmds.c: Ditto.
* mi/mi-common.h: Ditto.
* mi/mi-console.c: Ditto.
* mi/mi-interp.c: Ditto.
* mi/mi-main.c: Ditto.
* osf-share/cma_attr.c: Ditto.
* osf-share/cma_deb_core.h: Ditto.
* osf-share/cma_debug_client.h: Ditto.
* osf-share/cma_handle.h: Ditto.
* osf-share/cma_mutex.h: Ditto.
* osf-share/cma_stack_int.h: Ditto.
* osf-share/cma_tcb_defs.h: Ditto.
* python/py-auto-load.c: Ditto.
* python/py-breakpoint.c: Ditto.
* python/py-cmd.c: Ditto.
* python/py-frame.c: Ditto.
* python/py-objfile.c: Ditto.
* python/py-param.c: Ditto.
* python/py-progspace.c: Ditto.
* python/py-symbol.c: Ditto.
* python/py-value.c: Ditto.
* python/python-internal.h: Ditto.
* python/python.c: Ditto.
* tui/tui-data.c: Ditto.
* tui/tui-disasm.c: Ditto.
* tui/tui-hooks.c: Ditto.
* tui/tui-io.c: Ditto.
* tui/tui-layout.c: Ditto.
* tui/tui-regs.c: Ditto.
* tui/tui-source.c: Ditto.
* tui/tui-stack.c: Ditto.
* tui/tui-win.c: Ditto.
* tui/tui-windata.c: Ditto.
* tui/tui-winsource.c: Ditto.
Diffstat (limited to 'gdb/cli/cli-dump.c')
-rw-r--r-- | gdb/cli/cli-dump.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gdb/cli/cli-dump.c b/gdb/cli/cli-dump.c index 48ecff9..95c1b34 100644 --- a/gdb/cli/cli-dump.c +++ b/gdb/cli/cli-dump.c @@ -668,13 +668,13 @@ _initialize_cli_dump (void) { struct cmd_list_element *c; - add_prefix_cmd ("dump", class_vars, dump_command, _("\ -Dump target code/data to a local file."), + add_prefix_cmd ("dump", class_vars, dump_command, + _("Dump target code/data to a local file."), &dump_cmdlist, "dump ", 0/*allow-unknown*/, &cmdlist); - add_prefix_cmd ("append", class_vars, append_command, _("\ -Append target code/data to a local file."), + add_prefix_cmd ("append", class_vars, append_command, + _("Append target code/data to a local file."), &append_cmdlist, "append ", 0/*allow-unknown*/, &cmdlist); @@ -689,32 +689,32 @@ 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."); - add_prefix_cmd ("srec", all_commands, srec_dump_command, _("\ -Write target code/data to an srec file."), + add_prefix_cmd ("srec", all_commands, srec_dump_command, + _("Write target code/data to an srec file."), &srec_cmdlist, "dump srec ", 0 /*allow-unknown*/, &dump_cmdlist); - add_prefix_cmd ("ihex", all_commands, ihex_dump_command, _("\ -Write target code/data to an intel hex file."), + add_prefix_cmd ("ihex", all_commands, ihex_dump_command, + _("Write target code/data to an intel hex file."), &ihex_cmdlist, "dump ihex ", 0 /*allow-unknown*/, &dump_cmdlist); - add_prefix_cmd ("tekhex", all_commands, tekhex_dump_command, _("\ -Write target code/data to a tekhex file."), + add_prefix_cmd ("tekhex", all_commands, tekhex_dump_command, + _("Write target code/data to a tekhex file."), &tekhex_cmdlist, "dump tekhex ", 0 /*allow-unknown*/, &dump_cmdlist); - add_prefix_cmd ("binary", all_commands, binary_dump_command, _("\ -Write target code/data to a raw binary file."), + add_prefix_cmd ("binary", all_commands, binary_dump_command, + _("Write target code/data to a raw binary file."), &binary_dump_cmdlist, "dump binary ", 0 /*allow-unknown*/, &dump_cmdlist); - add_prefix_cmd ("binary", all_commands, binary_append_command, _("\ -Append target code/data to a raw binary file."), + add_prefix_cmd ("binary", all_commands, binary_append_command, + _("Append target code/data to a raw binary file."), &binary_append_cmdlist, "append binary ", 0 /*allow-unknown*/, &append_cmdlist); |