diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/breakpoint.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 375f055..2486faa 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2010-07-06 Andreas Schwab <schwab@linux-m68k.org> + + * breakpoint.c (_initialize_breakpoint): Add "cl" as alias for + "clear". + 2010-07-06 Ken Werner <ken.werner@de.ibm.com> * gdbtypes.h (floatformats_ieee_half): Add declaration. diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 4808298..3c93c4b 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -11717,6 +11717,7 @@ With no argument, clears all breakpoints in the line that the selected frame\n\ is executing in.\n\ \n\ See also the \"delete\" command which clears breakpoints by number.")); + add_com_alias ("cl", "clear", class_breakpoint, 1); c = add_com ("break", class_breakpoint, break_command, _("\ Set breakpoint at specified line or function.\n" |