Mercurial > hg > octave-lyh
diff scripts/plot/private/__ghostscript__.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 | 952e52dda82e |
line wrap: on
line diff
--- a/scripts/plot/private/__ghostscript__.m +++ b/scripts/plot/private/__ghostscript__.m @@ -97,7 +97,7 @@ gs_opts = sprintf ("%s -dNORANGEPAGESIZE", gs_opts); endif else - error ("print:badpapersize", "__ghostscript__.m: invalid 'papersize'") + error ("print:badpapersize", "__ghostscript__.m: invalid 'papersize'"); endif gs_opts = sprintf ("%s -dFIXEDMEDIA", gs_opts); ## "pageoffset" is relative to the coordinates, not the BBox LLHC. @@ -116,7 +116,7 @@ if (fid == -1) error ("print:fopenfailed", "__ghostscript__.m: fopen() failed"); endif - fprintf (fid, "%s\n", offset_ps{:}) + fprintf (fid, "%s\n", offset_ps{:}); unwind_protect_cleanup status = fclose (fid); if (status == -1) @@ -124,9 +124,9 @@ endif end_unwind_protect if (opts.debug) - fprintf ("---- begin %s ----\n", offsetfile) - fprintf ("%s\n", offset_ps{:}) - fprintf ("----- end %s -----\n", offsetfile) + fprintf ("---- begin %s ----\n", offsetfile); + fprintf ("%s\n", offset_ps{:}); + fprintf ("----- end %s -----\n", offsetfile); endif endif