Mercurial > hg > octave-lyh
diff scripts/plot/private/__bar__.m @ 11589:b0084095098e
missing semicolons in script files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 20 Jan 2011 18:26:09 -0500 |
parents | c792872f8942 |
children | 99cd136079f7 |
line wrap: on
line diff
--- a/scripts/plot/private/__bar__.m +++ b/scripts/plot/private/__bar__.m @@ -202,7 +202,7 @@ else if (! have_color_spec) if (ycols == 1) - lev = clim(1) + lev = clim(1); else lev = (i - 1) * (clim(2) - clim(1)) / (ycols - 1) - clim(1); endif @@ -238,9 +238,9 @@ addproperty ("barlayout", hg, "radio", "{stacked}|grouped", "stacked"); endif if (vertical) - addproperty ("horizontal", hg, "radio", "on|{off}", "off") + addproperty ("horizontal", hg, "radio", "on|{off}", "off"); else - addproperty ("horizontal", hg, "radio", "{on}|off", "on") + addproperty ("horizontal", hg, "radio", "{on}|off", "on"); endif addlistener (hg, "barwidth", @update_group);