changeset 29893:421e4913d8a4

print "object" not "m_object" for default classdef object display (bug #60938) * ov-classdef.cc (octave_classdef::print_raw): Fix bad substitution made in changeset 7c8a70e4daad.
author John W. Eaton <jwe@octave.org>
date Mon, 19 Jul 2021 10:43:31 -0400
parents 474f41101569
children 2a14420440b8
files libinterp/octave-value/ov-classdef.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/octave-value/ov-classdef.cc	Mon Jul 19 15:55:33 2021 +0200
+++ b/libinterp/octave-value/ov-classdef.cc	Mon Jul 19 10:43:31 2021 -0400
@@ -296,7 +296,7 @@
       increment_indent_level ();
 
       indent (os);
-      os << class_name () << " m_object";
+      os << class_name () << " object";
       if (is_array)
         os << " array";
       os << " with properties:";