Mercurial > emacs
changeset 66663:d74deb025f5a
(STATIC_HEAP_SIZE): Increment both definitions.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 03 Nov 2005 21:12:07 +0000 |
parents | 6ab8d86f8a2b |
children | 93a5a20be8f1 |
files | src/sheap.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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 <unistd.h> #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;