# HG changeset patch # User Ben Abbott # Date 1272411975 14400 # Node ID e2a4e87b900ce79975b13b0003df50884b058aa7 # Parent 1479b93ee655ef7dfa3849e70aa21491580c2805 __errplot__.m: Add missing semicolon line terminations. diff -r 1479b93ee655 -r e2a4e87b900c scripts/ChangeLog --- 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 + + * plot/private/__errplot__.m: Add missing semicolon line terminations. + 2010-04-27 David Bateman * plot/private/__default_plot_options_.m: New option errorstyle. diff -r 1479b93ee655 -r e2a4e87b900c scripts/plot/private/__errplot__.m --- 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