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	Tue Apr 17 21:21:46 2007 +0000
+++ b/scripts/ChangeLog	Wed Apr 18 01:00:32 2007 +0000
@@ -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	Tue Apr 17 21:21:46 2007 +0000
+++ b/scripts/plot/stem.m	Wed Apr 18 01:00:32 2007 +0000
@@ -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;