Mercurial > hg > octave-nkf
changeset 6534:7f56be6b0902
[project @ 2007-04-18 01:00:31 by jwe]
author | jwe |
---|---|
date | Wed, 18 Apr 2007 01:00:32 +0000 |
parents | c64687e6f1c3 |
children | 3ef1aa12f04c |
files | scripts/ChangeLog scripts/plot/stem.m |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,5 +1,7 @@ 2007-04-17 John W. Eaton <jwe@octave.org> + * plot/stem.m (stem_line_spec): Pass false as third arg to __pltopt__. + * set/ismember.m: New tests. From David Grohmann <grohmann@arlut.utexas.edu>
--- a/scripts/plot/stem.m +++ b/scripts/plot/stem.m @@ -262,7 +262,7 @@ endif [lc, ls, mc, ms] = set_default_values (); ## Parse the line specifier string. - cur_props = __pltopt__ ("stem", str); + cur_props = __pltopt__ ("stem", str, false); for i = 1:length(cur_props) if (isfield (cur_props(i), "markeredgecolor")) mc = cur_props(i).markeredgecolor;