From: Pierre Muller Date: Mon, 8 Jun 2009 16:05:14 +0000 (+0000) Subject: * breakpoint.c (_initialize_breakpoint): Remove "bu" command alias of X-Git-Tag: cgen-1_1-branchpoint~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7681d515c36554427defeb13acf2ab435fc2e475;p=thirdparty%2Fbinutils-gdb.git * breakpoint.c (_initialize_breakpoint): Remove "bu" command alias of "ubreak" command that does not exist. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 22aa1fff812..e2629a4183b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-06-08 Pierre Muller + + * breakpoint.c (_initialize_breakpoint): Remove "bu" command alias of + "ubreak" command that does not exist. + 2009-06-08 Pierre Muller * cli/cli-decode.c (add_alias_cmd): Correct assertion. diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index a866581838c..ffff09bb44d 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -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) {