diff scripts/plot/private/__ezplot__.m @ 11589:b0084095098e

missing semicolons in script files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 18:26:09 -0500
parents c792872f8942
children 72c96de7a403
line wrap: on
line diff
--- a/scripts/plot/private/__ezplot__.m	Thu Jan 20 17:51:13 2011 -0500
+++ b/scripts/plot/private/__ezplot__.m	Thu Jan 20 18:26:09 2011 -0500
@@ -418,10 +418,10 @@
       for i = 1 : length (XX)
         h = [h; plot(XX{i}, YY{i})];
         if (i == 1)
-          set (ax, "nextplot", "add")
+          set (ax, "nextplot", "add");
         endif
       endfor
-      set (ax, "nextplot", hold_state)
+      set (ax, "nextplot", hold_state);
     elseif (ispolar || isplot)
       h = feval (pfunc, X, Z);
       if (isplot && !parametric)