aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2012-06-09 19:03:43 +0200
committerAndreas Schwab2012-06-09 19:03:43 +0200
commit642b6d30c61ec63bdd5d891dd6bb85260c88211a (patch)
tree93e01047cde279caffc205ceb406ee480a4b8c45
parentcd4eb164a9cb5fd4df2290423830471d6086fd1e (diff)
downloademacs-642b6d30c61ec63bdd5d891dd6bb85260c88211a.tar.gz
emacs-642b6d30c61ec63bdd5d891dd6bb85260c88211a.zip
* Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/Makefile.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 05a9c19bf04..c83b4453922 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12012-06-09 Andreas Schwab <schwab@linux-m68k.org>
2
3 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
4
12012-06-09 Chong Yidong <cyd@gnu.org> 52012-06-09 Chong Yidong <cyd@gnu.org>
2 6
3 * ebuff-menu.el (electric-buffer-list): Preserve header line. 7 * ebuff-menu.el (electric-buffer-list): Preserve header line.
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 29ef8e40abe..4af584e77dc 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -86,7 +86,7 @@ AUTOGEN_VCS = \
86# During bootstrapping the byte-compiler is run interpreted when compiling 86# During bootstrapping the byte-compiler is run interpreted when compiling
87# itself, and uses more stack than usual. 87# itself, and uses more stack than usual.
88# 88#
89BIG_STACK_DEPTH = 1200 89BIG_STACK_DEPTH = 2200
90BIG_STACK_OPTS = --eval "(setq max-lisp-eval-depth $(BIG_STACK_DEPTH))" 90BIG_STACK_OPTS = --eval "(setq max-lisp-eval-depth $(BIG_STACK_DEPTH))"
91 91
92BYTE_COMPILE_FLAGS = $(BIG_STACK_OPTS) $(BYTE_COMPILE_EXTRA_FLAGS) 92BYTE_COMPILE_FLAGS = $(BIG_STACK_OPTS) $(BYTE_COMPILE_EXTRA_FLAGS)