aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2004-11-20 03:09:38 +0000
committerLuc Teirlinck2004-11-20 03:09:38 +0000
commit18cb59e8a4868adab240693ae944e16b56e35103 (patch)
tree8881211f17bfb6fc8329ef8e8ea20f493793562b
parent99439846b8c9db960720099e85d34b6504a86862 (diff)
downloademacs-18cb59e8a4868adab240693ae944e16b56e35103.tar.gz
emacs-18cb59e8a4868adab240693ae944e16b56e35103.zip
(compile): Set `max-specpdl-size' before compiling.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/Makefile.in3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d38a7224390..8d4eab336dd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12004-11-19 Luc Teirlinck <teirllm@auburn.edu>
2
3 * Makefile.in (compile): Set `max-specpdl-size' before compiling.
4
12004-11-19 Vinicius Jose Latorre <viniciusjl@ig.com.br> 52004-11-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2 6
3 * progmodes/ebnf2ps.el: Fix typos. Insert :version tag into all 7 * progmodes/ebnf2ps.el: Fix typos. Insert :version tag into all
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index c3bcb6c85e3..5f2762cbb87 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -236,7 +236,8 @@ compile: $(lisp)/subdirs.el doit
236 if test -f $$el; \ 236 if test -f $$el; \
237 then \ 237 then \
238 echo Compiling $$el; \ 238 echo Compiling $$el; \
239 $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \ 239 $(emacs) --eval "(setq max-specpdl-size 650)" \
240 -f batch-byte-compile-if-not-done $$el || exit 1; \
240 fi \ 241 fi \
241 done 242 done
242 243