summaryrefslogtreecommitdiff
path: root/gdb/top.c
diff options
context:
space:
mode:
authoraburgess <aburgess>2013-09-09 12:13:57 +0000
committeraburgess <aburgess>2013-09-09 12:13:57 +0000
commitbdafb20e29724b56d4f09743de0c7227307aa821 (patch)
tree7f78501bdd7ab95a14b8790eadf11b31453e9e3f /gdb/top.c
parentabd06b47e24148009ffe84c64accc1e3fb7da165 (diff)
downloadgdb-bdafb20e29724b56d4f09743de0c7227307aa821.tar.gz
Remove use of deprecated_init_ui_hook from quit_confirm.
https://sourceware.org/ml/gdb-patches/2013-09/msg00224.html gdb/ChangeLog * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
Diffstat (limited to 'gdb/top.c')
-rw-r--r--gdb/top.c15
1 files changed, 3 insertions, 12 deletions
diff --git a/gdb/top.c b/gdb/top.c
index b3e7d375360..d9128a3e86b 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -1355,18 +1355,9 @@ quit_confirm (void)
stb = mem_fileopen ();
old_chain = make_cleanup_ui_file_delete (stb);
- /* This is something of a hack. But there's no reliable way to see
- if a GUI is running. The `use_windows' variable doesn't cut
- it. */
- if (deprecated_init_ui_hook)
- fprintf_filtered (stb, _("A debugging session is active.\n"
- "Do you still want to close the debugger?"));
- else
- {
- fprintf_filtered (stb, _("A debugging session is active.\n\n"));
- iterate_over_inferiors (print_inferior_quit_action, stb);
- fprintf_filtered (stb, _("\nQuit anyway? "));
- }
+ fprintf_filtered (stb, _("A debugging session is active.\n\n"));
+ iterate_over_inferiors (print_inferior_quit_action, stb);
+ fprintf_filtered (stb, _("\nQuit anyway? "));
str = ui_file_xstrdup (stb, NULL);
make_cleanup (xfree, str);