diff scripts/plot/__scatter__.m @ 7768:a2d9f325b65a

Use isschar instead of deprecated isstr
author Rafael Laboissiere <rafael@debian.org>
date Sat, 03 May 2008 11:47:54 +0200
parents 689652eb95d1
children 73d6b71788c0
line wrap: on
line diff
--- a/scripts/plot/__scatter__.m
+++ b/scripts/plot/__scatter__.m
@@ -79,7 +79,7 @@
     arg = varargin{iarg++};
     if (ischar (arg) && strncmp (tolower (arg), "filled", 6))
       filled = true;
-    elseif ((isstr (arg) || iscell (arg)) && ! have_marker)
+    elseif ((ischar (arg) || iscell (arg)) && ! have_marker)
       [linespec, valid] = __pltopt__ ("scatter", arg, false);
       if (valid)
 	have_marker = true;