diff options
author | Sandra Loosemore <sandra@codesourcery.com> | 2015-12-18 17:53:11 -0800 |
---|---|---|
committer | Sandra Loosemore <sandra@codesourcery.com> | 2015-12-18 17:53:11 -0800 |
commit | 1690b6163c6546305cb5f8811d4c7348d8f435e0 (patch) | |
tree | b8c1e782bf2a66dc5459e6b0ed2bfad38a0b3f21 /gdb | |
parent | 420d30a957d0bc3a773de0490b26aeae1ad3b5a9 (diff) | |
download | fsf-binutils-gdb-1690b6163c6546305cb5f8811d4c7348d8f435e0.zip fsf-binutils-gdb-1690b6163c6546305cb5f8811d4c7348d8f435e0.tar.gz fsf-binutils-gdb-1690b6163c6546305cb5f8811d4c7348d8f435e0.tar.bz2 |
Make prompt_for_continue call throw_quit directly.
2015-12-18 Sandra Loosemore <sandra@codesourcery.com>
gdb/
* utils.c (prompt_for_continue): Call throw_quit directly on 'q'.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/utils.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index db2cdf4..a4ca15b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2015-12-18 Sandra Loosemore <sandra@codesourcery.com> + + * utils.c (prompt_for_continue): Call throw_quit directly on 'q'. + 2015-12-18 Antoine Tremblay <antoine.tremblay@ericsson.com> * arm-tdep.c (arm_get_next_pcs_read_memory_unsigned_integer): Cast diff --git a/gdb/utils.c b/gdb/utils.c index 284fbbb..d29ba27 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -1868,7 +1868,8 @@ prompt_for_continue (void) while (*p == ' ' || *p == '\t') ++p; if (p[0] == 'q') - quit (); + /* Do not call quit here; there is no possibility of SIGINT. */ + throw_quit ("Quit"); xfree (ignore); } immediate_quit--; |