settings: Update default MXLOOPS and document.
authorBen Pfaff <blp@cs.stanford.edu>
Sat, 5 Nov 2011 23:09:18 +0000 (16:09 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 6 Nov 2011 16:19:22 +0000 (08:19 -0800)
MXLOOPS should be 40 by default, for compatibility.

doc/flow-control.texi
doc/utilities.texi
src/data/settings.c

index 892887e211f9cb5b9f68f4f79a562b7796b33d55..b396e1f3b183ba5e98fcea215f0e58c9e5c67fd2 100644 (file)
@@ -169,6 +169,7 @@ condition on @cmd{END LOOP} will always execute at least once.
 
 If neither the index clause nor either condition clause is
 present, then the loop is executed MXLOOPS (@pxref{SET}) times.
+The default MXLOOPS is 40.
 
 @cmd{BREAK} also terminates @cmd{LOOP} execution (@pxref{BREAK}).
 
index 5d664bc4604332634368ba61745ec5196ae8c0c8..a42adb46a29a0541e3911e305d24c947b1196ac1 100644 (file)
@@ -588,6 +588,7 @@ Currently not used.
 
 @item MXLOOPS
 The maximum number of iterations for an uncontrolled loop (@pxref{LOOP}).
+The default MXLOOPS is 40.
 
 @item SEED
 The initial pseudo-random number seed.  Set to a real number or to
index 0868a331891c94b24a26a823086ad2e34d98a83e..95fda576dae5ef61bb24c4c43f52a210b55b083e 100644 (file)
@@ -105,7 +105,7 @@ static struct settings the_settings = {
 
   true,                         /* printback */
   true,                         /* mprint */
-  1,                            /* mxloops */
+  40,                           /* mxloops */
   64L * 1024 * 1024,            /* workspace */
   {FMT_F, 8, 2},                /* default_format */
   false,                        /* testing_mode */