changeset 20782:05b86b044995

don't use INTERRUPT_WITH_EXCEPTIONS when executing graphics callbacks * graphics.cc (gh_manager::do_execute_callback): Don't use BEGIN_INTERRUPT_WITH_EXCEPTIONS and END_INTERRUPT_WITH_EXCEPTIONS.
author John W. Eaton <jwe@octave.org>
date Mon, 30 Nov 2015 22:10:52 -0500
parents d02ffc87d9ee
children b6091735f3f5
files libinterp/corefcn/graphics.cc
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/graphics.cc	Mon Nov 30 22:08:49 2015 -0500
+++ b/libinterp/corefcn/graphics.cc	Mon Nov 30 22:10:52 2015 -0500
@@ -9360,8 +9360,6 @@
           xset_gcbo (h);
         }
 
-      BEGIN_INTERRUPT_WITH_EXCEPTIONS;
-
       // Copy CB because "function_value" method is non-const.
 
       octave_value cb = cb_arg;
@@ -9396,8 +9394,6 @@
 
       if (fcn)
         feval (fcn, args);
-
-      END_INTERRUPT_WITH_EXCEPTIONS;
     }
 }