pivot-table: Make pivot_area_get_default_style() return a static copy.
[pspp] / src / language / control / loop.c
index 10d57105ccc8189d582be05dd501e04ae60a4a38..bfd364ccd1085a8d5874c6b018cfd2ded31fc4f8 100644 (file)
@@ -177,10 +177,7 @@ close_loop (void *loop_)
 
   /* If there's nothing else limiting the number of loops, use
      MXLOOPS as a limit. */
-  if (loop->max_pass_count == -1
-      && loop->index_var == NULL
-      && loop->loop_condition == NULL
-      && loop->end_loop_condition == NULL)
+  if (loop->max_pass_count == -1 && loop->index_var == NULL)
     loop->max_pass_count = settings_get_mxloops ();
 }