aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Brown2011-03-02 16:30:51 -0500
committerKen Brown2011-03-02 16:30:51 -0500
commit5aef9e9a95ba8ce1a91e004cea845c43917c3a56 (patch)
tree3882a172e3483d9ed543ceaf71873c13443ae143 /src
parent8e0321ad01eec8aba5d0c16a706cfe57d4329cfe (diff)
downloademacs-5aef9e9a95ba8ce1a91e004cea845c43917c3a56.tar.gz
emacs-5aef9e9a95ba8ce1a91e004cea845c43917c3a56.zip
* 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 34e28866144..bce452be786 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12011-03-02 kbrown <kbrown@cornell.edu>
2
3 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
4
12011-03-02 Paul Eggert <eggert@cs.ucla.edu> 52011-03-02 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 Work around some portability problems with symlinks. 7 Work around some portability problems with symlinks.
diff --git a/src/sheap.c b/src/sheap.c
index 65fbab538bb..31414fbe5c6 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