# HG changeset patch # User Ben Abbott # Date 1272411975 14400 # Node ID e2a4e87b900ce79975b13b0003df50884b058aa7 # Parent 1479b93ee655ef7dfa3849e70aa21491580c2805 __errplot__.m: Add missing semicolon line terminations. diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -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 --git a/scripts/plot/private/__errplot__.m b/scripts/plot/private/__errplot__.m --- a/scripts/plot/private/__errplot__.m +++ b/scripts/plot/private/__errplot__.m @@ -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