diff scripts/plot/__plr2__.m @ 8664:e07e93c04080

style fixes
author John W. Eaton <jwe@octave.org>
date Wed, 04 Feb 2009 10:56:23 -0500
parents a1dbe9d80eee
children 7d48766c21a5
line wrap: on
line diff
--- a/scripts/plot/__plr2__.m	Wed Feb 04 16:05:01 2009 +0100
+++ b/scripts/plot/__plr2__.m	Wed Feb 04 10:56:23 2009 -0500
@@ -79,7 +79,7 @@
       y = diag (sin (theta)) * rho;
       retval = __plt__ ("polar", h, x, y, fmt);
     else
-      error ("__plr2__: invalid data for plotting")
+      error ("__plr2__: invalid data for plotting");
     endif
   elseif (ismatrix (theta))
     if (isvector (rho))
@@ -112,10 +112,10 @@
       y = rho .* sin (theta);
       retval = __plt__ ("polar", h, x, y, fmt);
     else
-      error ("__plr2__: invalid data for plotting")
+      error ("__plr2__: invalid data for plotting");
     endif
   else
-    error ("__plr2__: invalid data for plotting")
+    error ("__plr2__: invalid data for plotting");
   endif
 
 endfunction