changeset 28326:991dc4d31949 stable

fix apparent copy/paste error in call stack function * call-stack.cc (call_stack::regexp_symbol_info): Forward to stack_frame::regex_symbol_info instead of glob_symbol_info.
author John W. Eaton <jwe@octave.org>
date Mon, 18 May 2020 14:52:14 -0400
parents f6f87fff82f9
children 8db2d4c9a64f
files libinterp/corefcn/call-stack.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/call-stack.cc	Mon May 18 16:03:50 2020 +0200
+++ b/libinterp/corefcn/call-stack.cc	Mon May 18 14:52:14 2020 -0400
@@ -831,7 +831,7 @@
   symbol_info_list
   call_stack::regexp_symbol_info (const std::string& pattern) const
   {
-    return m_cs[m_curr_frame]->glob_symbol_info (pattern);
+    return m_cs[m_curr_frame]->regexp_symbol_info (pattern);
   }
 
   symbol_info_list call_stack::get_symbol_info (void)