diff libinterp/corefcn/debug.cc @ 20941:a4f5da7c5463

maint: Replace "octave_value_list ()" with "ovl ()". * debug.cc, det.cc, ellipj.cc, error.cc, file-io.cc, graphics.cc, hess.cc, input.cc, inv.cc, load-path.cc, lu.cc, octave-link.cc, pager.cc, pinv.cc, pr-output.cc, profiler.cc, schur.cc, symtab.cc, sysdep.cc, urlwrite.cc, variables.cc, __magick_read__.cc, audioread.cc, chol.cc, ov-classdef.h, ov-cs-list.cc, ov-flt-re-mat.cc, ov-re-mat.cc, ov-usr-fcn.cc: maint: Replace "octave_value_list ()" with "ovl ()".
author Rik <rik@octave.org>
date Fri, 18 Dec 2015 16:18:41 -0800
parents 48b2ad5ee801
children 3aa293be0e8d
line wrap: on
line diff
--- a/libinterp/corefcn/debug.cc	Fri Dec 18 16:04:56 2015 -0800
+++ b/libinterp/corefcn/debug.cc	Fri Dec 18 16:18:41 2015 -0800
@@ -1404,7 +1404,7 @@
       tree_evaluator::dbstep_flag = 1;
     }
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFALIAS (dbnext, dbstep);
@@ -1426,7 +1426,7 @@
 
   tree_evaluator::reset_debug_state ();
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFUN (dbquit, args, ,
@@ -1449,7 +1449,7 @@
 
   octave_throw_interrupt_exception ();
 
-  return octave_value_list ();
+  return ovl ();
 }
 
 DEFUN (isdebugmode, args, ,
@@ -1486,6 +1486,6 @@
 
   tree_evaluator::quiet_breakpoint_flag = state;
 
-  return octave_value_list ();
+  return ovl ();
 }