changeset 6473:5abfdf1aa2ce

[project @ 2007-03-29 13:07:48 by jwe]
author jwe
date Thu, 29 Mar 2007 13:07:48 +0000
parents fb53fc94f526
children 3d6e0589e887
files scripts/ChangeLog scripts/plot/stem.m
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,7 @@
+2007-03-29  John W. Eaton  <jwe@octave.org>
+
+	* plot/stem.m (set_default_values): Use RGB triple for color.
+
 2007-03-27  John W. Eaton  <jwe@octave.org>
 
 	* Makefile.in, audio/Makefile.in, control/Makefile.in,
--- a/scripts/plot/stem.m
+++ b/scripts/plot/stem.m
@@ -291,8 +291,8 @@
 
 function [lc, ls, mc, ms] = set_default_values ()
   ## set default values
-  mc = "r";
-  lc = "r";
+  mc = [1, 0, 0];
+  lc = [1, 0, 0];
   ls = "-";
   ms = "o";
 endfunction