# HG changeset patch # User jwe # Date 1095950777 0 # Node ID 4e4062bb980739d73debbefc08eeebd62c341c11 # Parent da607e9daf12d842596929b88b2bc104ebff8ee7 [project @ 2004-09-23 14:46:17 by jwe] diff -r da607e9daf12 -r 4e4062bb9807 src/ChangeLog --- a/src/ChangeLog Thu Sep 23 01:37:58 2004 +0000 +++ b/src/ChangeLog Thu Sep 23 14:46:17 2004 +0000 @@ -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 -r da607e9daf12 -r 4e4062bb9807 src/ov-struct.cc --- a/src/ov-struct.cc Thu Sep 23 01:37:58 2004 +0000 +++ b/src/ov-struct.cc Thu Sep 23 14:46:17 2004 +0000 @@ -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; }