diff scripts/plot/__fltk_print__.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 3fc07861449b
line wrap: on
line diff
--- a/scripts/plot/__fltk_print__.m
+++ b/scripts/plot/__fltk_print__.m
@@ -25,8 +25,8 @@
 
   dos_shell = (ispc () && ! isunix ());
 
-  figure (opts.figure)
-  drawnow ("expose")
+  figure (opts.figure);
+  drawnow ("expose");
   __fltk_redraw__ ();
 
   if (! isempty (opts.fig2dev_binary))
@@ -111,7 +111,7 @@
   case {"corel", "gif"}
     error ("print:unsupporteddevice",
            "print.m: %s output is not available for the FLTK graphics toolkit",
-           upper (opts.devopt))
+           upper (opts.devopt));
   case opts.ghostscript.device
     opts.ghostscript.source = "-";
     opts.ghostscript.output = opts.name;
@@ -140,14 +140,14 @@
   otherwise
     error (sprintf ("print:no%soutput", opts.devopt),
            "print.m: %s output is not available for GL2PS output",
-           upper (opts.devopt))
+           upper (opts.devopt));
   endswitch
 
   opts.pipeline = pipeline;
 
   for n = 1:numel(pipeline)
     if (opts.debug)
-      fprintf ("fltk-pipeline: '%s'\n", pipeline{n})
+      fprintf ("fltk-pipeline: '%s'\n", pipeline{n});
     endif
     pid = popen (pipeline{n}, "w");
     if (pid < 0)