diff liboctave/boolSparse.cc @ 10142:829e69ec3110

make OCTAVE_QUIT a function
author Jaroslav Hajek <highegg@gmail.com>
date Wed, 20 Jan 2010 10:38:00 +0100
parents c6edba80dfae
children 4c0cdbe0acca
line wrap: on
line diff
--- a/liboctave/boolSparse.cc
+++ b/liboctave/boolSparse.cc
@@ -169,7 +169,7 @@
    //  zero-based to one-based arrays
    for (octave_idx_type j = 0; j < nc; j++)  
      {
-       OCTAVE_QUIT;
+       octave_quit ();
        for (octave_idx_type i = a.cidx(j); i < a.cidx(j+1); i++)
 	 os << a.ridx(i) + 1 << " "  << j + 1 << " " << a.data(i) << "\n";
      }