aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2006-03-18 14:02:43 +0000
committerEli Zaretskii2006-03-18 14:02:43 +0000
commit50f9edc2022a2441f9d63e45469cf4393c17d3e4 (patch)
tree415937f000ec2c654dbac05bb97b2b7583dd674e /src
parent288f0d6402ae9ff551ad3a4bde750f34d77aa968 (diff)
downloademacs-50f9edc2022a2441f9d63e45469cf4393c17d3e4.tar.gz
emacs-50f9edc2022a2441f9d63e45469cf4393c17d3e4.zip
(STATIC_HEAP_SIZE): Enlarge STATIC_HEAP_SIZE to 12MB.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/sheap.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 414a01efb93..81f586b7cb7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12006-03-18 Craig McDaniel <craigmcd@gmail.com> (tiny change)
2
3 * sheap.c (STATIC_HEAP_SIZE): Enlarge STATIC_HEAP_SIZE to 12MB.
4
12006-03-18 Vivek Dasmohapatra <vivek@etla.org> (tiny change) 52006-03-18 Vivek Dasmohapatra <vivek@etla.org> (tiny change)
2 6
3 * emacs.c (main): If user asks for a display that is unavailable, 7 * 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. */
26 26
27#include <unistd.h> 27#include <unistd.h>
28 28
29#ifdef HAVE_X_WINDOWS 29#define STATIC_HEAP_SIZE (12 * 1024 * 1024)
30#define STATIC_HEAP_SIZE (8 * 1024 * 1024)
31#else
32#define STATIC_HEAP_SIZE (8 * 1024 * 1024)
33#endif
34 30
35int debug_sheap = 0; 31int debug_sheap = 0;
36 32