diff scripts/statistics/base/statistics.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 cab3b148d4e4
children e151e23f73bc
line wrap: on
line diff
--- a/scripts/statistics/base/statistics.m	Sat Oct 23 02:31:08 2010 -0400
+++ b/scripts/statistics/base/statistics.m	Sat Oct 23 03:00:31 2010 -0400
@@ -51,8 +51,8 @@
       dim = 1;
     endif
   else
-    if (!(isscalar (dim) && dim == round (dim)) || 
-        !(1 <= dim && dim <= nd))
+    if (!(isscalar (dim) && dim == round (dim))
+        || !(1 <= dim && dim <= nd))
       error ("statistics: DIM must be an integer and a valid dimension");
     endif
   endif