changeset 6442:1896d9b1f302

[project @ 2007-03-23 16:10:33 by jwe]
author jwe
date Fri, 23 Mar 2007 16:10:33 +0000
parents 8bcceddab2d5
children 9dc77e3c9313
files scripts/ChangeLog scripts/plot/__pltopt1__.m scripts/plot/plot.m
diffstat 3 files changed, 8 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,5 +1,8 @@
 2007-03-23  John W. Eaton  <jwe@octave.org>
 
+	* 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,
--- a/scripts/plot/__pltopt1__.m
+++ b/scripts/plot/__pltopt1__.m
@@ -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];
--- a/scripts/plot/plot.m
+++ b/scripts/plot/plot.m
@@ -85,12 +85,6 @@
 ## @item .
 ## Set dots plot style.
 ##
-## @item @@
-## Set points plot style.
-##
-## @item -@@
-## Set linespoints plot style.
-##
 ## @item ^
 ## Set impulses plot style.
 ##