diff libinterp/corefcn/help.cc @ 21127:df7891224709

maint: Use "return ovl (...)" in DEFUN macros. * cellfun.cc, data.cc, debug.cc, defaults.cc, det.cc, dirfns.cc, dlmread.cc, error.cc, file-io.cc, getrusage.cc, graphics.cc, help.cc, input.cc, inv.cc, kron.cc, load-path.cc, pager.cc, pinv.cc, rand.cc, strfns.cc, urlwrite.cc, chol.cc, ov-classdef.cc, ov-struct.cc: Use "return ovl (...)" in DEFUN macros, rather than "return octave_value (...)".
author Rik <rik@octave.org>
date Thu, 21 Jan 2016 09:47:50 -0800
parents e39e05d90788
children 538b57866b90
line wrap: on
line diff
--- a/libinterp/corefcn/help.cc	Thu Jan 21 11:24:36 2016 -0500
+++ b/libinterp/corefcn/help.cc	Thu Jan 21 09:47:50 2016 -0800
@@ -1167,7 +1167,7 @@
 Undocumented internal function.\n\
 @end deftypefn")
 {
-  return octave_value (Cell (names (operators_map)));
+  return ovl (Cell (names (operators_map)));
 }
 
 // Return a cell array of strings containing the names of all
@@ -1179,7 +1179,7 @@
 Undocumented internal function.\n\
 @end deftypefn")
 {
-  return octave_value (Cell (names (keywords_map)));
+  return ovl (Cell (names (keywords_map)));
 }
 
 // Return a cell array of strings containing the names of all builtin
@@ -1193,7 +1193,7 @@
 {
   const string_vector bif = symbol_table::built_in_function_names ();
 
-  return octave_value (Cell (bif));
+  return ovl (Cell (bif));
 }
 
 static std::string