changeset 1557:c694fe5956e3

[project @ 1995-10-12 00:32:20 by jwe]
author jwe
date Thu, 12 Oct 1995 00:34:40 +0000
parents d508e2cab748
children 297e084c3857
files scripts/plot/bottom_title.m scripts/plot/multiplot.m scripts/plot/plot_border.m scripts/plot/subplot.m scripts/plot/subwindow.m scripts/plot/top_title.m
diffstat 6 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/bottom_title.m	Thu Oct 12 00:22:11 1995 +0000
+++ b/scripts/plot/bottom_title.m	Thu Oct 12 00:34:40 1995 +0000
@@ -35,8 +35,8 @@
   endif
 
   if (isstr (text))
-    set top_title
-    set title
+    set top_title;
+    set title;
     eval (sprintf ("set bottom_title \"%s\"", text));
   else
     error ("bottom_title: text must be a string");
--- a/scripts/plot/multiplot.m	Thu Oct 12 00:22:11 1995 +0000
+++ b/scripts/plot/multiplot.m	Thu Oct 12 00:34:40 1995 +0000
@@ -65,8 +65,8 @@
   if (xn == 0 && yn == 0)
 
     set nomultiplot;
-    set size 1,1
-    set origin 0,0
+    set size 1, 1;
+    set origin 0, 0;
 
     multiplot_mode = 0;
     multiplot_xsize = 1;
--- a/scripts/plot/plot_border.m	Thu Oct 12 00:22:11 1995 +0000
+++ b/scripts/plot/plot_border.m	Thu Oct 12 00:34:40 1995 +0000
@@ -85,7 +85,7 @@
   endwhile
 
   if (none)
-    set noborder
+    set noborder;
   else
     if (all)
       border = 15;
--- a/scripts/plot/subplot.m	Thu Oct 12 00:22:11 1995 +0000
+++ b/scripts/plot/subplot.m	Thu Oct 12 00:34:40 1995 +0000
@@ -114,8 +114,8 @@
 # switching to single plot ?
 
     set nomultiplot;
-    set size 1,1
-    set origin 0,0
+    set size 1, 1;
+    set origin 0, 0;
 
     multiplot_xn = 1;
     multiplot_yn = 1;
--- a/scripts/plot/subwindow.m	Thu Oct 12 00:22:11 1995 +0000
+++ b/scripts/plot/subwindow.m	Thu Oct 12 00:34:40 1995 +0000
@@ -55,7 +55,7 @@
 # args to multiplot() 
 
   if (multiplot_mode != 1)
-    multiplot (xn, yn)
+    multiplot (xn, yn);
     return;
   endif
 
--- a/scripts/plot/top_title.m	Thu Oct 12 00:22:11 1995 +0000
+++ b/scripts/plot/top_title.m	Thu Oct 12 00:34:40 1995 +0000
@@ -33,8 +33,8 @@
   endif
 
   if (isstr (text))
-    set bottom_title
-    set title
+    set bottom_title;
+    set title;
     eval (sprintf ("set top_title \"%s\"", text));
   else
     error ("error: top_title: text must be a string");