diff scripts/plot/private/__errcomm__.m @ 10549:95c3e38098bf

Untabify .m scripts
author Rik <code@nomad.inbox5.com>
date Fri, 23 Apr 2010 11:28:50 -0700
parents 1aeb39118764
children 1479b93ee655
line wrap: on
line diff
--- a/scripts/plot/private/__errcomm__.m	Fri Apr 23 11:13:48 2010 -0700
+++ b/scripts/plot/private/__errcomm__.m	Fri Apr 23 11:28:50 2010 -0700
@@ -51,21 +51,21 @@
     while (k <= nargs)
       a = varargin{k++};
       if (ischar (a) || iscellstr (a))
-	retval(idx++) = __errplot__ (a, p, data{1:ndata});
-	break;
+        retval(idx++) = __errplot__ (a, p, data{1:ndata});
+        break;
       elseif (isvector (a))
-	a = a(:);
+        a = a(:);
       elseif (ismatrix (a))
-	;
+        ;
       else
-	error ("wrong argument types");
+        error ("wrong argument types");
       endif
       if (size (a) != sz)
-	error ("argument sizes do not match");
+        error ("argument sizes do not match");
       endif
       data{++ndata} = a;
       if (ndata > 6)
-	error ("too many arguments to a plot");
+        error ("too many arguments to a plot");
       endif
     endwhile
   endwhile