From: Po Lu Date: Sat, 23 Sep 2023 06:20:54 +0000 (+0800) Subject: Enlarge dumped_data X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=024432e583d570067a2b3131f842a3717b3046c5;p=emacs.git Enlarge dumped_data * src/w32heap.c (DUMPED_HEAP_SIZE): Increase to 24 MiB, the bare minimum necessary to build a 32-bit Emacs. --- diff --git a/src/w32heap.c b/src/w32heap.c index 628fc28e3c5..96881c3923d 100644 --- a/src/w32heap.c +++ b/src/w32heap.c @@ -123,7 +123,7 @@ typedef struct _RTL_HEAP_PARAMETERS { # if defined _WIN64 || defined WIDE_EMACS_INT # define DUMPED_HEAP_SIZE (28*1024*1024) # else -# define DUMPED_HEAP_SIZE (18*1024*1024) +# define DUMPED_HEAP_SIZE (24*1024*1024) # endif #endif