# HG changeset patch # User jwe # Date 813458080 0 # Node ID c694fe5956e353b94f839d0879bd5734c2a116b4 # Parent d508e2cab748c3a4e0fef380494e22b1b198c5ab [project @ 1995-10-12 00:32:20 by jwe] diff -r d508e2cab748 -r c694fe5956e3 scripts/plot/bottom_title.m --- 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"); diff -r d508e2cab748 -r c694fe5956e3 scripts/plot/multiplot.m --- 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; diff -r d508e2cab748 -r c694fe5956e3 scripts/plot/plot_border.m --- 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; diff -r d508e2cab748 -r c694fe5956e3 scripts/plot/subplot.m --- 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; diff -r d508e2cab748 -r c694fe5956e3 scripts/plot/subwindow.m --- 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 diff -r d508e2cab748 -r c694fe5956e3 scripts/plot/top_title.m --- 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");