aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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