# HG changeset patch # User jwe # Date 1095950777 0 # Node ID 4e4062bb980739d73debbefc08eeebd62c341c11 # Parent da607e9daf12d842596929b88b2bc104ebff8ee7 [project @ 2004-09-23 14:46:17 by jwe] diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2004-09-23 John W. Eaton + + * ov-struct.cc (octave_struct::subsref): Pass skip to next_subsref. + 2004-09-22 John W. Eaton * pt-plot.cc (send_to_plot_stream): Skip automatic replot if in diff --git a/src/ov-struct.cc b/src/ov-struct.cc --- a/src/ov-struct.cc +++ b/src/ov-struct.cc @@ -155,7 +155,7 @@ // octave_user_function::subsref. if (idx.size () > 1) - retval = retval(0).next_subsref (nargout, type, idx); + retval = retval(0).next_subsref (nargout, type, idx, skip); return retval; }