* breakpoint.c (_initialize_breakpoint): Remove "bu" command alias of
authorPierre Muller <muller@sourceware.org>
Mon, 8 Jun 2009 16:05:14 +0000 (16:05 +0000)
committerPierre Muller <muller@sourceware.org>
Mon, 8 Jun 2009 16:05:14 +0000 (16:05 +0000)
"ubreak" command that does not exist.

gdb/ChangeLog
gdb/breakpoint.c

index 22aa1fff8122a9525524ff0cd7e71f20fb2a7b57..e2629a4183b1db23e8b79661f677bf45577797b7 100644 (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.
index a866581838ce3c31edd78d537ee7e56b01537e9e..ffff09bb44d5d32d9bab391fb39d495771d349ae 100644 (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)
     {