diff options
author | Eli Zaretskii <eliz@gnu.org> | 2006-03-18 14:02:43 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2006-03-18 14:02:43 +0000 |
commit | 50f9edc2022a2441f9d63e45469cf4393c17d3e4 (patch) | |
tree | 415937f000ec2c654dbac05bb97b2b7583dd674e /src/sheap.c | |
parent | 288f0d6402ae9ff551ad3a4bde750f34d77aa968 (diff) | |
download | emacs-50f9edc2022a2441f9d63e45469cf4393c17d3e4.tar.gz |
(STATIC_HEAP_SIZE): Enlarge STATIC_HEAP_SIZE to 12MB.
Diffstat (limited to 'src/sheap.c')
-rw-r--r-- | src/sheap.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/sheap.c b/src/sheap.c index 192af4030c6..03da2afa813 100644 --- a/src/sheap.c +++ b/src/sheap.c @@ -26,11 +26,7 @@ Boston, MA 02110-1301, USA. */ #include <unistd.h> -#ifdef HAVE_X_WINDOWS -#define STATIC_HEAP_SIZE (8 * 1024 * 1024) -#else -#define STATIC_HEAP_SIZE (8 * 1024 * 1024) -#endif +#define STATIC_HEAP_SIZE (12 * 1024 * 1024) int debug_sheap = 0; |