diff libinterp/corefcn/quadcc.cc @ 22860:0b1e25cc4457

eliminate use of OCTAVE_QUIT macro in C++ sources * __dsearchn__.cc, __magick_read__.cc, filter.cc, find.cc, graphics.cc, quadcc.cc, qz.cc, tsearch.cc audiodevinfo.cc, symrcm.cc, op-int.h, lo-regexp.cc: Use inline octave_quit function instead of OCTAVE_QUIT macro.
author John W. Eaton <jwe@octave.org>
date Sat, 03 Dec 2016 07:12:10 -0500
parents 3a2b891d0b33
children 4e3d47dc7e25
line wrap: on
line diff
--- a/libinterp/corefcn/quadcc.cc	Fri Dec 02 13:49:53 2016 -0500
+++ b/libinterp/corefcn/quadcc.cc	Sat Dec 03 07:12:10 2016 -0500
@@ -1753,7 +1753,7 @@
               && err - err_final < fabs (igral) * tol))
     {
       // Allow the user to interrupt.
-      OCTAVE_QUIT;
+      octave_quit ();
 
       // Put our finger on the interval with the largest error.
       iv = &(ivals[heap[0]]);