diff options
| author | Thien-Thi Nguyen | 2004-11-19 14:35:40 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2004-11-19 14:35:40 +0000 |
| commit | 087b413df767c1d4314ebfeeebf2614efde86e4a (patch) | |
| tree | 148dfa4b88c7c78ad78963c4671dbf3cd4f4f794 | |
| parent | 97564b7ef490505baef1651c0ee35c8d52891c31 (diff) | |
| download | emacs-087b413df767c1d4314ebfeeebf2614efde86e4a.tar.gz emacs-087b413df767c1d4314ebfeeebf2614efde86e4a.zip | |
(recompile): Set `max-specpdl-size' before compiling.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/Makefile.in | 5 |
2 files changed, 10 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3f7764ad1dc..e3c1a498b29 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-11-19 Thien-Thi Nguyen <ttn@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (recompile): Set `max-specpdl-size' before compiling. | ||
| 4 | |||
| 1 | 2004-11-18 Jay Belanger <belanger@truman.edu> | 5 | 2004-11-18 Jay Belanger <belanger@truman.edu> |
| 2 | 6 | ||
| 3 | * calc/calc-alg.el (math-simplify-divisor): Remove unnecessary | 7 | * calc/calc-alg.el (math-simplify-divisor): Remove unnecessary |
| @@ -56,7 +60,7 @@ | |||
| 56 | 60 | ||
| 57 | (math-simplify-expr): Declare it. | 61 | (math-simplify-expr): Declare it. |
| 58 | Replaced argument expr in all calls of math-defsimplify by | 62 | Replaced argument expr in all calls of math-defsimplify by |
| 59 | math-simplify-expr. | 63 | math-simplify-expr. |
| 60 | (math-simplify-plus, math-simplify-times, math-simplify-divide) | 64 | (math-simplify-plus, math-simplify-times, math-simplify-divide) |
| 61 | (math-simplify-divisor, math-simplify-one-divisor) | 65 | (math-simplify-divisor, math-simplify-one-divisor) |
| 62 | (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt) | 66 | (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt) |
| @@ -90,7 +94,7 @@ | |||
| 90 | 94 | ||
| 91 | * calc/calc-units.el (math-simplify-expr): Declare it. | 95 | * calc/calc-units.el (math-simplify-expr): Declare it. |
| 92 | Replace argument expr in all calls of math-defsimplify by | 96 | Replace argument expr in all calls of math-defsimplify by |
| 93 | math-simplify-expr. | 97 | math-simplify-expr. |
| 94 | (math-simplify-units-prod): Replace variable expr by declared | 98 | (math-simplify-units-prod): Replace variable expr by declared |
| 95 | variable math-simplify-expr. | 99 | variable math-simplify-expr. |
| 96 | 100 | ||
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index e87ffa6f265..c3bcb6c85e3 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -281,7 +281,10 @@ compile-after-backup: backup-compiled-files compile-always | |||
| 281 | # .elc is present. | 281 | # .elc is present. |
| 282 | 282 | ||
| 283 | recompile: doit $(lisp)/progmodes/cc-mode.elc | 283 | recompile: doit $(lisp)/progmodes/cc-mode.elc |
| 284 | $(EMACS) $(EMACSOPT) --eval "(batch-byte-recompile-directory 0)" $(lisp) | 284 | $(EMACS) $(EMACSOPT) \ |
| 285 | --eval "(setq max-specpdl-size 650)" \ | ||
| 286 | --eval "(batch-byte-recompile-directory 0)" \ | ||
| 287 | $(lisp) | ||
| 285 | 288 | ||
| 286 | # CC Mode uses a compile time macro system which causes a compile time | 289 | # CC Mode uses a compile time macro system which causes a compile time |
| 287 | # dependency in cc-mode.elc on the macros in cc-langs.el and the | 290 | # dependency in cc-mode.elc on the macros in cc-langs.el and the |