Re-indent (almost). Several cases where indent was getting it wrong

were omitted.
This commit is contained in:
Andrew Cagney 2000-04-03 05:30:13 +00:00
parent a960f24961
commit eb2f494ab0
2 changed files with 41 additions and 32 deletions

View File

@ -1,3 +1,8 @@
Mon Apr 3 14:56:11 2000 Andrew Cagney <cagney@b1.cygnus.com>
* top.c: Re-indent.
(set_hook, error_hook): Remove PARAMS.
Mon Apr 3 14:45:25 2000 Andrew Cagney <cagney@b1.cygnus.com>
* symtab.h (add_minsym_to_demangled_hash_table): Revert 2000-03-29

View File

@ -477,7 +477,7 @@ void (*call_command_hook) PARAMS ((struct cmd_list_element * c, char *cmd,
/* Called after a `set' command has finished. Is only run if the
`set' command succeeded. */
void (*set_hook) PARAMS ((struct cmd_list_element *c));
void (*set_hook) (struct cmd_list_element * c);
/* Called when the current thread changes. Argument is thread id. */
@ -486,8 +486,7 @@ void (*context_hook) PARAMS ((int id));
/* Takes control from error (). Typically used to prevent longjmps out of the
middle of the GUI. Usually used in conjunction with a catch routine. */
NORETURN void (*error_hook)
PARAMS ((void)) ATTR_NORETURN;
NORETURN void (*error_hook) (void) ATTR_NORETURN;
/* One should use catch_errors rather than manipulating these
@ -4000,8 +3999,7 @@ set_debug (arg, from_tty)
char *arg;
int from_tty;
{
printf_unfiltered (
"\"set debug\" must be followed by the name of a print subcommand.\n");
printf_unfiltered ("\"set debug\" must be followed by the name of a print subcommand.\n");
help_list (setdebuglist, "set debug ", -1, gdb_stdout);
}
@ -4338,14 +4336,16 @@ This value is used to set the speed of the serial port when debugging\n\
using remote targets.", &setlist),
&showlist);
c = add_set_cmd("remotedebug", no_class, var_zinteger, (char *) &remote_debug, "Set debugging of remote protocol.\n\
c = add_set_cmd ("remotedebug", no_class, var_zinteger,
(char *) &remote_debug,
"Set debugging of remote protocol.\n\
When enabled, each packet sent or received with the remote target\n\
is displayed.", &setlist);
deprecate_cmd (c, "set debug remote");
deprecate_cmd (add_show_from_set (c, &showlist), "show debug remote");
add_show_from_set (
add_set_cmd ("remote", no_class, var_zinteger, (char *) &remote_debug,
add_show_from_set (add_set_cmd ("remote", no_class, var_zinteger,
(char *) &remote_debug,
"Set debugging of remote protocol.\n\
When enabled, each packet sent or received with the remote target\n\
is displayed.", &setdebuglist),
@ -4389,7 +4389,11 @@ from the target.", &setlist),
Use \"on\" to enable the notification, and \"off\" to disable it.", &setlist),
&showlist);
}
add_prefix_cmd("debug",no_class,set_debug, "Generic command for setting gdb debugging flags", &setdebuglist, "set debug ", 0, &setlist);
add_prefix_cmd ("debug", no_class, set_debug,
"Generic command for setting gdb debugging flags",
&setdebuglist, "set debug ", 0, &setlist);
add_prefix_cmd("debug",no_class,show_debug,"Generic command for showing gdb debugging flags", &showdebuglist, "show debug ", 0, &showlist);
add_prefix_cmd ("debug", no_class, show_debug,
"Generic command for showing gdb debugging flags",
&showdebuglist, "show debug ", 0, &showlist);
}