* breakpoint.c (_initialize_breakpoint): Remove "bu" command alias of

"ubreak" command that does not exist.
This commit is contained in:
Pierre Muller 2009-06-08 16:05:14 +00:00
parent 22f965a4f8
commit 7681d515c3
2 changed files with 7 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2009-06-08 Pierre Muller <muller@ics.u-strasbg.fr>
* breakpoint.c (_initialize_breakpoint): Remove "bu" command alias of
"ubreak" command that does not exist.
2009-06-08 Pierre Muller <muller@ics.u-strasbg.fr>
* cli/cli-decode.c (add_alias_cmd): Correct assertion.

View File

@ -8802,11 +8802,8 @@ BREAK_ARGS_HELP ("break")));
add_com_alias ("bre", "break", class_run, 1);
add_com_alias ("brea", "break", class_run, 1);
if (xdb_commands)
{
add_com_alias ("ba", "break", class_breakpoint, 1);
add_com_alias ("bu", "ubreak", class_breakpoint, 1);
}
if (xdb_commands)
add_com_alias ("ba", "break", class_breakpoint, 1);
if (dbx_commands)
{