summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Moreton <andrewjmoreton@gmail.com>2015-07-10 15:48:11 +0300
committerEli Zaretskii <eliz@gnu.org>2015-07-10 15:48:11 +0300
commit8badbad184c75d6a9b17b72900ca091a1bd11397 (patch)
tree36a99e0a041c706524e2661c4934d88f4f130d76
parent4e81398f1c12d63c5b4c465beba22150bba11dae (diff)
downloademacs-8badbad184c75d6a9b17b72900ca091a1bd11397.tar.gz
* src/w32heap.c (DUMPED_HEAP_SIZE): Bump to 20MB.
Copyright-paperwork-exempt: yes
-rw-r--r--src/w32heap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32heap.c b/src/w32heap.c
index 47ffec1c303..ec5b04119bf 100644
--- a/src/w32heap.c
+++ b/src/w32heap.c
@@ -115,7 +115,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 (19*1024*1024)
+# define DUMPED_HEAP_SIZE (20*1024*1024)
#else
# define DUMPED_HEAP_SIZE (12*1024*1024)
#endif