changeset 10581:e2a4e87b900c

__errplot__.m: Add missing semicolon line terminations.
author Ben Abbott <bpabbott@mac.com>
date Tue, 27 Apr 2010 19:46:15 -0400
parents 1479b93ee655
children 9676d0255440
files scripts/ChangeLog scripts/plot/private/__errplot__.m
diffstat 2 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Wed Apr 28 00:23:57 2010 +0200
+++ b/scripts/ChangeLog	Tue Apr 27 19:46:15 2010 -0400
@@ -1,3 +1,7 @@
+2010-04-27  Ben Abbott <bpabbott@mac.com>
+
+	* plot/private/__errplot__.m: Add missing semicolon line terminations.
+
 2010-04-27  David Bateman  <dbateman@free.fr>
 
 	* plot/private/__default_plot_options_.m: New option errorstyle.
--- a/scripts/plot/private/__errplot__.m	Wed Apr 28 00:23:57 2010 +0200
+++ b/scripts/plot/private/__errplot__.m	Tue Apr 27 19:46:15 2010 -0400
@@ -65,18 +65,18 @@
       [linestyle, marker] = __next_line_style__ ();
       if (isempty (fmt.color))
         hl = __line__ (hg, "linestyle", linestyle, "marker", marker,
-                       "color", __next_line_color__ ())
+                       "color", __next_line_color__ ());
       else
         hl = __line__ (hg, "linestyle", linestyle, "marker", marker,
-                       "color", fmt.color)
+                       "color", fmt.color);
       endif
     else
       if (isempty (fmt.color))
         hl = __line__ (hg, "linestyle", fmt.linestyle, "marker", fmt.marker,
-                       "color", __next_line_color__ ())
+                       "color", __next_line_color__ ());
       else
         hl = __line__ (hg, "linestyle", fmt.linestyle, "marker", fmt.marker,
-                       "color", fmt.color)
+                       "color", fmt.color);
       endif
     endif