Blob Blame History Raw
--- plplot-5.9.4/bindings/octave/PLplot/closefig.m.octave32	2009-08-13 21:30:05.511036727 -0600
+++ plplot-5.9.4/bindings/octave/PLplot/closefig.m	2009-08-13 21:30:52.206974684 -0600
@@ -21,7 +21,7 @@
 
   global __pl
 
-  if ( !(exist "__pl") || !struct_contains (__pl,"inited"))
+  if ( !(exist ("__pl")) || !struct_contains (__pl,"inited"))
     return;
   endif
 
--- plplot-5.9.4/bindings/octave/demos/p4.m.octave32	2009-05-10 13:37:17.000000000 -0600
+++ plplot-5.9.4/bindings/octave/demos/p4.m	2009-08-13 22:50:58.068005128 -0600
@@ -21,7 +21,7 @@
   x=0.01:0.1:10;
   y=exp(x);
 
-  og = grid "minor";
+  og = grid ("minor");
   title("Log-log example");
   loglog(x,y,'y')
   grid (og);
--- plplot-5.9.4/bindings/octave/demos/p5.m.octave32	2009-05-10 13:37:17.000000000 -0600
+++ plplot-5.9.4/bindings/octave/demos/p5.m	2009-08-13 22:51:21.277975680 -0600
@@ -21,7 +21,7 @@
   x=-pi:0.01:pi;
   y=sin(x).+cos(3*x);
 
-  og = grid "on";
+  og = grid ("on");
   title("Polar example");
   polar(x,y,'y')
   grid (og);