Mercurial > hg > octave-nkf
diff scripts/plot/plotyy.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 | e916491cbb99 |
line wrap: on
line diff
--- a/scripts/plot/plotyy.m +++ b/scripts/plot/plotyy.m @@ -113,7 +113,7 @@ endif end_unwind_protect - set (ax, "activepositionproperty", "position") + set (ax, "activepositionproperty", "position"); if (nargout > 0) Ax = ax; @@ -192,7 +192,7 @@ ## Tag the plotyy axes, so we can use that information ## not to mirror the y axis tick marks - set (ax, "tag", "plotyy") + set (ax, "tag", "plotyy"); ## Cross-reference one axis to the other in the userdata set (ax(1), "userdata", ax(2)); @@ -265,7 +265,7 @@ oldplotboxaspectratio = get (ax2, "plotboxaspectratio"); oldplotboxaspectratiomode = get (ax2, "plotboxaspectratiomode"); if (! (isequal (position, oldposition) && isequal (view, oldview))) - set (ax2, "position", position, "view", view) + set (ax2, "position", position, "view", view); endif if (! (isequal (plotboxaspectratio, oldplotboxaspectratio) && isequal (plotboxaspectratiomode, oldplotboxaspectratiomode)))