From 01664ed1f0b76fa4f6fe2290c174a0f22daceb25 Mon Sep 17 00:00:00 2001 From: Ken Brown Date: Sat, 20 Nov 2010 10:23:49 -0500 Subject: [PATCH] * src/sheap.c (STATIC_HEAP_SIZE): Increase to 13MB. --- src/ChangeLog | 4 ++++ src/sheap.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index bb9f68acd5b..04a8198cfc2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2010-11-20 Ken Brown + + * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB. + 2010-11-20 Eli Zaretskii * term.c (produce_glyphless_glyph): Use \uNNNN, \UNNNNNN, or diff --git a/src/sheap.c b/src/sheap.c index 8d034ff65aa..e972462d423 100644 --- a/src/sheap.c +++ b/src/sheap.c @@ -25,7 +25,7 @@ along with GNU Emacs. If not, see . */ #include -#define STATIC_HEAP_SIZE (12 * 1024 * 1024) +#define STATIC_HEAP_SIZE (13 * 1024 * 1024) int debug_sheap = 0; -- 2.39.5