comparison libinterp/corefcn/interpreter.h @ 32943:5f4b519e4a5e

maint: merge stable to default
author John W. Eaton <jwe@octave.org>
date Tue, 06 Feb 2024 12:51:10 -0500
parents a11d7442f9cd 3085687255dc
children
comparison
equal deleted inserted replaced
32939:a1c5450ae665 32943:5f4b519e4a5e
217 bool in_top_level_repl () const 217 bool in_top_level_repl () const
218 { 218 {
219 return m_evaluator.in_top_level_repl (); 219 return m_evaluator.in_top_level_repl ();
220 } 220 }
221 221
222 bool is_initialized () const
223 {
224 return m_initialized;
225 }
226
227 OCTAVE_DEPRECATED (9, "use octave::is_initialized instead")
222 bool initialized () const 228 bool initialized () const
223 { 229 {
224 return m_initialized; 230 return is_initialized ();
225 } 231 }
226 232
227 void interrupt_all_in_process_group (bool b) 233 void interrupt_all_in_process_group (bool b)
228 { 234 {
229 m_interrupt_all_in_process_group = b; 235 m_interrupt_all_in_process_group = b;