# HG changeset patch # User Richard M. Stallman # Date 1131052327 0 # Node ID d74deb025f5a6b5cd15a834e23f9e6b15a81ce60 # Parent 6ab8d86f8a2b74197a80df2e226e2262974d0c82 (STATIC_HEAP_SIZE): Increment both definitions. diff -r 6ab8d86f8a2b -r d74deb025f5a src/sheap.c --- a/src/sheap.c Thu Nov 03 21:11:20 2005 +0000 +++ b/src/sheap.c Thu Nov 03 21:12:07 2005 +0000 @@ -1,5 +1,5 @@ -/* simulate sbrk() with an array in .bss, for unexec() support for Cygwin; - complete rewrite of xemacs Cygwin unexec() code +/* simulate `sbrk' with an array in .bss, for `unexec' support for Cygwin; + complete rewrite of xemacs Cygwin `unexec' code Copyright (C) 2004, 2005 Free Software Foundation, Inc. @@ -27,9 +27,9 @@ #include #ifdef HAVE_X_WINDOWS -#define STATIC_HEAP_SIZE (7 * 1024 * 1024) +#define STATIC_HEAP_SIZE (8 * 1024 * 1024) #else -#define STATIC_HEAP_SIZE (7 * 1024 * 1024) +#define STATIC_HEAP_SIZE (8 * 1024 * 1024) #endif int debug_sheap = 0;