From be2566eeab627dd8c38cfb3adb678a925af300bc Mon Sep 17 00:00:00 2001 From: Alan Mackenzie Date: Mon, 31 Jan 2022 19:46:27 +0000 Subject: [PATCH] Enlarge max-specpdl-size for generation of files in .../admin/grammars * admin/grammars/Makefile.in: Add a --eval clause to set max-specpdl-size to 5000 (previously 2500) for these targets. --- admin/grammars/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/admin/grammars/Makefile.in b/admin/grammars/Makefile.in index 6f699430895..4ca88982cde 100644 --- a/admin/grammars/Makefile.in +++ b/admin/grammars/Makefile.in @@ -34,7 +34,8 @@ top_builddir = @top_builddir@ unexport EMACSDATA EMACSDOC EMACSLOADPATH EMACSPATH EMACS = ${top_builddir}/src/emacs -emacs = "${EMACS}" -batch --no-site-file --no-site-lisp --eval '(setq load-prefer-newer t)' +emacs = "${EMACS}" -batch --no-site-file --no-site-lisp \ + --eval '(setq max-specpdl-size 5000)' --eval '(setq load-prefer-newer t)' make_bovine = ${emacs} -l semantic/bovine/grammar -f bovine-batch-make-parser make_wisent = ${emacs} -l semantic/wisent/grammar -f wisent-batch-make-parser -- 2.39.5