]> git.eshelyaron.com Git - emacs.git/commitdiff
Enlarge DUMPED_HEAP_SIZE
authorEli Zaretskii <eliz@gnu.org>
Sat, 5 Nov 2016 08:21:23 +0000 (10:21 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 5 Nov 2016 08:21:23 +0000 (10:21 +0200)
* src/w32heap.c (DUMPED_HEAP_SIZE) [_WIN64 || WIDE_EMACS_INT]:
Enlarge to 21MB.  Reported by Richard Copley <rcopley@gmail.com>.

src/w32heap.c

index 443472b4708ead6d66ea55c4e41f8205a1bf260f..43b5f352a1de442575221ef1d17949ee3746cd81 100644 (file)
@@ -114,7 +114,7 @@ typedef struct _RTL_HEAP_PARAMETERS {
    to build only the first bootstrap-emacs.exe with the large size,
    and reset that to a lower value afterwards.  */
 #if defined _WIN64 || defined WIDE_EMACS_INT
-# define DUMPED_HEAP_SIZE (20*1024*1024)
+# define DUMPED_HEAP_SIZE (21*1024*1024)
 #else
 # define DUMPED_HEAP_SIZE (12*1024*1024)
 #endif