Use the gnumeric_reopen function
[pspp] / src / data / settings.c
index 0868a331891c94b24a26a823086ad2e34d98a83e..47b3f3d5ce6081f58f53afe03a2f1bd1fd381904 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 */
@@ -713,3 +713,10 @@ settings_get_var_style (void)
 {
   return the_settings.var_output_style;
 }
+
+
+void
+settings_set_var_style (enum settings_var_style s)
+{
+  the_settings.var_output_style = s;
+}