diff libinterp/corefcn/octave-link.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 8da80da1ac37
children 5e00ed38a58b
line wrap: on
line diff
--- a/libinterp/corefcn/octave-link.cc	Fri Dec 18 16:04:56 2015 -0800
+++ b/libinterp/corefcn/octave-link.cc	Fri Dec 18 16:18:41 2015 -0800
@@ -195,7 +195,7 @@
 @end deftypefn")
 {
   if (args.length () != 6)
-    return octave_value_list ();
+    return ovl ();
 
   octave_value_list retval (3);
 
@@ -265,7 +265,7 @@
 @end deftypefn")
 {
   if (args.length () != 8)
-    return octave_value_list ();
+    return ovl ();
 
   Cell list = args(0).cell_value ();
   const Array<std::string> tlist = list.cellstr_value ();
@@ -323,7 +323,7 @@
 @end deftypefn")
 {
   if (args.length () != 4)
-    return octave_value_list ();
+    return ovl ();
 
   Cell prompt = args(0).cell_value ();
   Array<std::string> tmp = prompt.cellstr_value ();