aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Brown2010-11-20 10:23:49 -0500
committerKen Brown2010-11-20 10:23:49 -0500
commit01664ed1f0b76fa4f6fe2290c174a0f22daceb25 (patch)
tree8980702dbb8dcde7f32ec12bb917f1fb75eb07ee /src
parent7c2d713b9b2f469194017b115c1b0ab66c4e44e2 (diff)
downloademacs-01664ed1f0b76fa4f6fe2290c174a0f22daceb25.tar.gz
emacs-01664ed1f0b76fa4f6fe2290c174a0f22daceb25.zip
* src/sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/sheap.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index bb9f68acd5b..04a8198cfc2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12010-11-20 Ken Brown <kbrown@cornell.edu>
2
3 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
4
12010-11-20 Eli Zaretskii <eliz@gnu.org> 52010-11-20 Eli Zaretskii <eliz@gnu.org>
2 6
3 * term.c (produce_glyphless_glyph): Use \uNNNN, \UNNNNNN, or 7 * 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 <http://www.gnu.org/licenses/>. */
25 25
26#include <unistd.h> 26#include <unistd.h>
27 27
28#define STATIC_HEAP_SIZE (12 * 1024 * 1024) 28#define STATIC_HEAP_SIZE (13 * 1024 * 1024)
29 29
30int debug_sheap = 0; 30int debug_sheap = 0;
31 31