diff scripts/plot/gnuplot_drawnow.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 d5bd2766c640
children
line wrap: on
line diff
--- a/scripts/plot/gnuplot_drawnow.m	Thu Jan 20 17:51:13 2011 -0500
+++ b/scripts/plot/gnuplot_drawnow.m	Thu Jan 20 18:26:09 2011 -0500
@@ -52,7 +52,7 @@
         endif
       else
         error ("gnuplot_drawnow: the gnuplot terminal, \"%s\", is not available",
-               gnuplot_trim_term (term))
+               gnuplot_trim_term (term));
       endif
     unwind_protect_cleanup
       set (h, "__plot_stream__", default_plot_stream);
@@ -251,7 +251,7 @@
           endif
         else
           size_str = "";
-          warning ("gnuplot_set_term: size is zero")
+          warning ("gnuplot_set_term: size is zero");
         endif
       else
         ## A specified size take priority over the figure properies.
@@ -259,9 +259,9 @@
       endif
     else
       if isempty (h)
-        disp ("gnuplot_set_term: figure handle is empty")
+        disp ("gnuplot_set_term: figure handle is empty");
       elseif !isfigure(h)
-        disp ("gnuplot_set_term: not a figure handle")
+        disp ("gnuplot_set_term: not a figure handle");
       endif
       title_str = "";
       size_str = "";