From 7681d515c36554427defeb13acf2ab435fc2e475 Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Mon, 8 Jun 2009 16:05:14 +0000 Subject: [PATCH] * breakpoint.c (_initialize_breakpoint): Remove "bu" command alias of "ubreak" command that does not exist. --- gdb/ChangeLog | 5 +++++ gdb/breakpoint.c | 7 ++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 22aa1ff..e2629a4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 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. 2009-06-07 Pedro Alves diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index a866581..ffff09b 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) { -- 2.7.4