diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/exceptions.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f01183e..6b4518c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2016-04-12 Pedro Alves <palves@redhat.com> + * exceptions.c (prepare_to_throw_exception): Don't clear the quit + flag. + +2016-04-12 Pedro Alves <palves@redhat.com> + * event-top.c (command_handler): Don't call clear_quit_flag. 2016-04-12 Pedro Alves <palves@redhat.com> diff --git a/gdb/exceptions.c b/gdb/exceptions.c index 8ba86fc..b457838 100644 --- a/gdb/exceptions.c +++ b/gdb/exceptions.c @@ -30,7 +30,6 @@ void prepare_to_throw_exception (void) { - clear_quit_flag (); immediate_quit = 0; } |