changeset 28449:a68e892970d0

maint: merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 11 Jun 2020 14:21:59 +0200
parents 7de12a40e87b (current diff) 97a8ec57c33e (diff)
children b659b7f085c6
files
diffstat 2 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/ls-oct-binary.cc	Thu Jun 11 13:52:20 2020 +0200
+++ b/libinterp/corefcn/ls-oct-binary.cc	Thu Jun 11 14:21:59 2020 +0200
@@ -116,11 +116,11 @@
           octave::interpreter& interp
             = octave::__get_interpreter__ ("load_inline_fcn");
 
-          octave_value_list tmp = interp.feval ("inline", args, 1);
+          octave_value_list tmp_inl = interp.feval ("inline", args, 1);
 
-          if (tmp.length () > 0)
+          if (tmp_inl.length () > 0)
             {
-              retval = tmp(0);
+              retval = tmp_inl(0);
               return true;
             }
         }
--- a/libinterp/octave-value/ov-fcn-handle.cc	Thu Jun 11 13:52:20 2020 +0200
+++ b/libinterp/octave-value/ov-fcn-handle.cc	Thu Jun 11 14:21:59 2020 +0200
@@ -176,10 +176,10 @@
     {
       if (m_fcn.is_defined ())
         {
-          octave_function *fcn = m_fcn.function_value ();
-
-          if (fcn)
-            m_file = fcn->fcn_file_name ();
+          octave_function *oct_fcn = m_fcn.function_value ();
+
+          if (oct_fcn)
+            m_file = oct_fcn->fcn_file_name ();
         }
     }
 
@@ -2394,13 +2394,13 @@
     unwind_action act ([&tw] () { tw.pop_scope (); });
 
     int parse_status;
-    octave_value anonymous_fcn_handle
+    octave_value anonymous_fcn_hdl
       = interp.eval_string (fcn_text, true, parse_status);
 
     if (parse_status != 0)
       return false;
 
-    octave_fcn_handle *fh = anonymous_fcn_handle.fcn_handle_value ();
+    octave_fcn_handle *fh = anonymous_fcn_hdl.fcn_handle_value ();
 
     if (! fh)
       return false;