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.
This commit is contained in:
parent
493e2a69a4
commit
9a2b4c1ba7
46 changed files with 428 additions and 226 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue