# HG changeset patch # User jwe # Date 1174666233 0 # Node ID 1896d9b1f302fbdb4846293519b6681b381c33b2 # Parent 8bcceddab2d50620091096b3d33e42dd3a2d10b3 [project @ 2007-03-23 16:10:33 by jwe] diff -r 8bcceddab2d5 -r 1896d9b1f302 scripts/ChangeLog --- a/scripts/ChangeLog Fri Mar 23 15:35:28 2007 +0000 +++ b/scripts/ChangeLog Fri Mar 23 16:10:33 2007 +0000 @@ -1,5 +1,8 @@ 2007-03-23 John W. Eaton + * plot/__pltopt1__.m: Handle "@" marker same as "+". + * plot/plot.m: Remove "-@" and "@" from docstring. + * plot/orient.m: Fix tests to avoid creating a plot window. * elfun/acosd.m, elfun/acotd.m, elfun/acscd.m, elfun/asecd.m, diff -r 8bcceddab2d5 -r 1896d9b1f302 scripts/plot/__pltopt1__.m --- a/scripts/plot/__pltopt1__.m Fri Mar 23 15:35:28 2007 +0000 +++ b/scripts/plot/__pltopt1__.m Fri Mar 23 16:10:33 2007 +0000 @@ -58,8 +58,12 @@ || topt == "." || topt == "x" || topt == "s" || topt == "d" || topt == "^" || topt == "v" || topt == ">" || topt == "<" || topt == "p" - || topt == "h") + || topt == "h" || topt == "@") have_marker = true; + ## Backward compatibility. Leave undocumented. + if (topt == "@") + topt = "+"; + endif options.marker = topt; elseif (topt == "k") options.color = [0, 0, 0]; diff -r 8bcceddab2d5 -r 1896d9b1f302 scripts/plot/plot.m --- a/scripts/plot/plot.m Fri Mar 23 15:35:28 2007 +0000 +++ b/scripts/plot/plot.m Fri Mar 23 16:10:33 2007 +0000 @@ -85,12 +85,6 @@ ## @item . ## Set dots plot style. ## -## @item @@ -## Set points plot style. -## -## @item -@@ -## Set linespoints plot style. -## ## @item ^ ## Set impulses plot style. ##