diff options
| author | Richard M. Stallman | 2005-11-03 21:12:07 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-11-03 21:12:07 +0000 |
| commit | acebbab35057b74ddfbd63f241d3efa204fbc643 (patch) | |
| tree | b679901357dc8310eed0f95a370e09cdd9189db5 /src | |
| parent | 225ccad65e9f51eefc4f475db53e0ab914e95277 (diff) | |
| download | emacs-acebbab35057b74ddfbd63f241d3efa204fbc643.tar.gz emacs-acebbab35057b74ddfbd63f241d3efa204fbc643.zip | |
(STATIC_HEAP_SIZE): Increment both definitions.
Diffstat (limited to 'src')
| -rw-r--r-- | src/sheap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sheap.c b/src/sheap.c index 635c3dc0144..cc740173a24 100644 --- a/src/sheap.c +++ b/src/sheap.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* simulate sbrk() with an array in .bss, for unexec() support for Cygwin; | 1 | /* simulate `sbrk' with an array in .bss, for `unexec' support for Cygwin; |
| 2 | complete rewrite of xemacs Cygwin unexec() code | 2 | complete rewrite of xemacs Cygwin `unexec' code |
| 3 | 3 | ||
| 4 | Copyright (C) 2004, 2005 Free Software Foundation, Inc. | 4 | Copyright (C) 2004, 2005 Free Software Foundation, Inc. |
| 5 | 5 | ||
| @@ -27,9 +27,9 @@ Boston, MA 02110-1301, USA. */ | |||
| 27 | #include <unistd.h> | 27 | #include <unistd.h> |
| 28 | 28 | ||
| 29 | #ifdef HAVE_X_WINDOWS | 29 | #ifdef HAVE_X_WINDOWS |
| 30 | #define STATIC_HEAP_SIZE (7 * 1024 * 1024) | 30 | #define STATIC_HEAP_SIZE (8 * 1024 * 1024) |
| 31 | #else | 31 | #else |
| 32 | #define STATIC_HEAP_SIZE (7 * 1024 * 1024) | 32 | #define STATIC_HEAP_SIZE (8 * 1024 * 1024) |
| 33 | #endif | 33 | #endif |
| 34 | 34 | ||
| 35 | int debug_sheap = 0; | 35 | int debug_sheap = 0; |