# HG changeset patch # User jwe # Date 1175173668 0 # Node ID 5abfdf1aa2ce473ba62f5024d2366d34d06c4149 # Parent fb53fc94f5266f7c0154ac729c3c4d91334595b1 [project @ 2007-03-29 13:07:48 by jwe] diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2007-03-29 John W. Eaton + + * plot/stem.m (set_default_values): Use RGB triple for color. + 2007-03-27 John W. Eaton * Makefile.in, audio/Makefile.in, control/Makefile.in, diff --git a/scripts/plot/stem.m b/scripts/plot/stem.m --- 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