diff scripts/plot/draw/private/__contour__.m @ 21385:89fa0694aa2e

Fix check-missing-semicolon QA target (bug #47277). * scripts/module.mk: Recode check-missing-semicolon target to exclude files with classdef or nested functions. * subsref.m, subsref.m, cplxpair.m, waitbar.m, cubehelix.m, imshow.m, edit.m, unpack.m, annotation.m, axis.m, legend.m, __contour__.m, __ezplot__.m, __plt__.m, __gnuplot_drawnow__.m, copyobj.m, linkprop.m, __add_default_menu__.m, __gnuplot_print__.m, __print_parse_opts__.m, struct2hdl.m, ellipke.m, gallery.m, strjoin.m: Add missing semicolons to statements.
author Rik <rik@octave.org>
date Thu, 25 Feb 2016 10:37:59 -0800
parents 516bb87ea72e
children 3d25f9f4a62b
line wrap: on
line diff
--- a/scripts/plot/draw/private/__contour__.m	Tue Mar 01 09:53:59 2016 -0800
+++ b/scripts/plot/draw/private/__contour__.m	Thu Feb 25 10:37:59 2016 -0800
@@ -417,9 +417,9 @@
 
     switch (prop)
       case "levellist"
-        set (h, "levellistmode", "manual")
+        set (h, "levellistmode", "manual");
       case "levelstep"
-        set (h, "levelstepmode", "manual")
+        set (h, "levelstepmode", "manual");
       case "fill"
         ## Switching from filled ('k' linespec) to unfilled, reset linecolor
         if (strcmp (get (h, "fill"), "off"))
@@ -503,9 +503,9 @@
 
     switch (prop)
       case "textlist"
-        set (h, "textlistmode", "manual")
+        set (h, "textlistmode", "manual");
       case "textstep"
-        set (h, "textstepmode", "manual")
+        set (h, "textstepmode", "manual");
     endswitch
 
     if (strcmp (get (h, "textlistmode"), "manual"))