Mercurial > hg > octave-nkf
diff scripts/plot/clabel.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 | be55736a0783 |
children | fd0a3ac60b0e |
line wrap: on
line diff
--- a/scripts/plot/clabel.m +++ b/scripts/plot/clabel.m @@ -66,8 +66,8 @@ hparent = gca (); else arg = varargin{1}; - if (isscalar (arg) && ishandle(arg) && - strcmp (get (arg, "type"), "hggroup")) + if (isscalar (arg) && ishandle(arg) + && strcmp (get (arg, "type"), "hggroup")) obj = get (arg); if (! isfield (obj, "contourmatrix")) error ("clabel: expecting the handle to be a contour group");