Mercurial > hg > octave-lyh
diff scripts/plot/private/__errplot__.m @ 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 | 6a81e809a392 |
line wrap: on
line diff
--- 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