Mercurial > hg > octave-lyh
diff scripts/plot/subplot.m @ 11149:fe3c3dfc07eb
style fix: break lines before && and ||, not after
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 23 Oct 2010 03:00:31 -0400 |
parents | a72d53df4fa6 |
children | c9df571efe95 |
line wrap: on
line diff
--- a/scripts/plot/subplot.m +++ b/scripts/plot/subplot.m @@ -118,8 +118,8 @@ endif if (strcmp (get (child, "type"), "axes")) ## Skip legend and colorbar objects. - if (strcmp (get (child, "tag"), "legend") || - strcmp (get (child, "tag"), "colorbar")) + if (strcmp (get (child, "tag"), "legend") + || strcmp (get (child, "tag"), "colorbar")) continue; endif objpos = get (child, "position");