changeset 6474:3d6e0589e887

[project @ 2007-03-29 13:12:15 by jwe]
author jwe
date Thu, 29 Mar 2007 13:12:16 +0000
parents 5abfdf1aa2ce
children 5e881924e645
files scripts/ChangeLog scripts/plot/stem.m
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,6 +1,6 @@
 2007-03-29  John W. Eaton  <jwe@octave.org>
 
-	* plot/stem.m (set_default_values): Use RGB triple for color.
+	* plot/stem.m (stem, set_default_values): Use RGB triple for color.
 
 2007-03-27  John W. Eaton  <jwe@octave.org>
 
--- a/scripts/plot/stem.m
+++ b/scripts/plot/stem.m
@@ -125,7 +125,7 @@
 
   if (find (y < 0))
     x_axis_range = get (gca, "xlim");
-    hhhh = line (x_axis_range, [0, 0], "color", "k");
+    hhhh = line (x_axis_range, [0, 0], "color", [0, 0, 0]);
   endif
 
   if (dofill)