changeset 16397:649d0b75ec06

allow continue and quit debug buttons to work * main-window.cc (main_window::debug_continue_callback, main_window::debug_continue_callback): Call command_editor::interrupt.
author John W. Eaton <jwe@octave.org>
date Fri, 29 Mar 2013 22:52:41 -0400
parents c6a13c1900fc
children 48b3d172042d
files libgui/src/main-window.cc
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/main-window.cc	Fri Mar 29 22:00:57 2013 -0400
+++ b/libgui/src/main-window.cc	Fri Mar 29 22:52:41 2013 -0400
@@ -1241,6 +1241,8 @@
 main_window::debug_continue_callback (void)
 {
   Fdbcont ();
+
+  command_editor::interrupt (true);
 }
 
 // The next three callbacks are invoked by GUI buttons.  Those buttons
@@ -1278,6 +1280,8 @@
 main_window::debug_quit_callback (void)
 {
   Fdbquit ();
+
+  command_editor::interrupt (true);
 }
 
 void