]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix previous -batch change for gc-cons-percentage
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 21 Jun 2022 13:11:28 +0000 (15:11 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 21 Jun 2022 13:11:28 +0000 (15:11 +0200)
* src/emacs.c (main): Reset the default for gc-cons-percentage in
interactive Emacs.

src/emacs.c

index c602157da161029e46d3e0c8e6bc7cbb3d0df709..37c6c76e7a394ceb35ad3d20c24aabeeb740f5aa 100644 (file)
@@ -1947,8 +1947,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem
   /* 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);