* src/emacs.c (main): Reset the default for gc-cons-percentage in
interactive Emacs.
/* Do less garbage collection in batch mode (since these tend to be
more short-lived, and the memory is returned to the OS on exit
anyway). */
- if (noninteractive)
- Vgc_cons_percentage = make_float (1.0);
+ Vgc_cons_percentage = make_float (noninteractive? 1.0: 0.1);
no_loadup
= argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);