changeset 20888:bcb6edf35d93

Add missing semicolon (from changeset c7d881aec36c) (bug #42838). * scripts/plot/util/__gnuplot_drawnow__.m: Add missing semicolon.
author Ben Abbott <bpabbott@mac.com>
date Sun, 13 Dec 2015 14:48:32 -0500
parents 05125a9eb9c6
children a88142abca36
files scripts/plot/util/__gnuplot_drawnow__.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/util/__gnuplot_drawnow__.m	Sun Dec 13 11:36:05 2015 -0800
+++ b/scripts/plot/util/__gnuplot_drawnow__.m	Sun Dec 13 14:48:32 2015 -0500
@@ -270,7 +270,7 @@
     term_str = ["set terminal " term];
     if (__gnuplot_has_feature__ ("needs_color_with_postscript") ...
         && strcmp (term, "postscript"))
-      term_str = [term_str, " color"]
+      term_str = [term_str, " color"];
     endif
     if (! isempty (enh_str))
       term_str = [term_str " " enh_str];