From: Eli Zaretskii Date: Sat, 18 Mar 2006 14:02:43 +0000 (+0000) Subject: (STATIC_HEAP_SIZE): Enlarge STATIC_HEAP_SIZE to 12MB. X-Git-Tag: emacs-pretest-22.0.90~3536 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=50f9edc2022a2441f9d63e45469cf4393c17d3e4;p=emacs.git (STATIC_HEAP_SIZE): Enlarge STATIC_HEAP_SIZE to 12MB. --- diff --git a/src/ChangeLog b/src/ChangeLog index 414a01efb93..81f586b7cb7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-03-18 Craig McDaniel (tiny change) + + * sheap.c (STATIC_HEAP_SIZE): Enlarge STATIC_HEAP_SIZE to 12MB. + 2006-03-18 Vivek Dasmohapatra (tiny change) * emacs.c (main): If user asks for a display that is unavailable, 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 -#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;