follow-up: regression reported, so comment out until researched

This commit is contained in:
nhmall
2026-06-04 16:55:33 -04:00
parent 3d46ee9523
commit 19f0ae07cc
+4 -2
View File
@@ -7426,9 +7426,11 @@ allopt_array_init(void)
allopt[i].opt_in_out ? "on" : "off", "initval",
allopt[i].initval ? "on" : "off");
#endif
if (allopt[i].opttyp == BoolOpt)
#if 0
if (allopt[i].opttyp == BoolOpt && i != opt_ascii_map)
allopt[i].initval = allopt[i].opt_in_out;
*(allopt[i].addr) = allopt[i].initval;
#endif
*(allopt[i].addr) = allopt[i].initval;
}
}
heed_all_options();