From c0b37c48d06454caf48d676a98ae74105d3b8558 Mon Sep 17 00:00:00 2001 From: Aleksandar Ristovski Date: Thu, 5 Jun 2008 18:31:53 +0000 Subject: [PATCH] * breakpoint.c (print_exception_catchpoint): Put 'exception' back to 'exception caught|thrown' message. --- gdb/ChangeLog | 5 +++++ gdb/breakpoint.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a9e209f469..e8c30e69bd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2008-06-05 Aleksandar Ristovski + + * breakpoint.c (print_exception_catchpoint): Put 'exception' back to + 'exception caught|thrown' message. + 2008-06-05 Jan Kratochvil * Makefile.in: Update dependencies. diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index cf2399d9b8..808d06262c 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -6511,8 +6511,8 @@ print_exception_catchpoint (struct breakpoint *b) if (!ui_out_is_mi_like_p (uiout)) ui_out_field_int (uiout, "bkptno", b->number); ui_out_text (uiout, - bp_throw ? " (thrown), " - : " (caught), "); + bp_throw ? " (exception thrown), " + : " (exception caught), "); if (ui_out_is_mi_like_p (uiout)) { ui_out_field_string (uiout, "reason", -- 2.34.1