diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-07-06 03:53:11 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-07-06 03:53:11 +0000 |
commit | 9dc5e2a93611891cdef625066665571ee0007d07 (patch) | |
tree | baa6097f28affd552596446f3d31c404b50c3da2 /gdb/ChangeLog | |
parent | 7fb088be89cfb0c624cb9e4498808d69e1719568 (diff) | |
download | gdb-9dc5e2a93611891cdef625066665571ee0007d07.zip gdb-9dc5e2a93611891cdef625066665571ee0007d07.tar.gz gdb-9dc5e2a93611891cdef625066665571ee0007d07.tar.bz2 |
Replace:
if (interpreter_p && strncmp (interpreter_p, "mi", 2) == 0)
with:
if (ui_out_is_mi_like_p (uiout))
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 88fe975..aebd3df 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,14 @@ +2001-07-04 Andrew Cagney <ac131313@redhat.com> + + * ui-out.h (struct ui_out_impl): Add field is_mi_like_p. + (ui_out_is_mi_like_p): Declare. + * ui-out.c (ui_out_is_mi_like_p): Define. + (default_ui_out_impl): Initialize is_mi_like_p to zero. + * cli-out.c (cli_ui_out_impl): Ditto. + * breakpoint.c (print_it_typical): Use ui_out_is_mi_like_p. + (watchpoint_check, print_one_breakpoint, mention): Ditto. + * infrun.c (print_stop_reason, normal_stop): Ditto. + 2001-07-05 Daniel Jacobowitz <drow@mvista.com> * mips-tdep.c (mips_software_single_step): New function. |