1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

(compile): Set `max-specpdl-size' before compiling.

This commit is contained in:
Luc Teirlinck 2004-11-20 03:09:38 +00:00
parent 99439846b8
commit 18cb59e8a4
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-11-19 Luc Teirlinck <teirllm@auburn.edu>
* Makefile.in (compile): Set `max-specpdl-size' before compiling.
2004-11-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
* progmodes/ebnf2ps.el: Fix typos. Insert :version tag into all

View File

@ -236,7 +236,8 @@ compile: $(lisp)/subdirs.el doit
if test -f $$el; \
then \
echo Compiling $$el; \
$(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \
$(emacs) --eval "(setq max-specpdl-size 650)" \
-f batch-byte-compile-if-not-done $$el || exit 1; \
fi \
done