diff options
| author | Karoly Lorentey | 2004-04-08 15:09:37 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2004-04-08 15:09:37 +0000 |
| commit | 96636402928874579cdae7e3d89c40e9de0c9170 (patch) | |
| tree | 829b4ae6f2834c10329c0cf35aaefbcca78f200e | |
| parent | fbada922e4bc08f6a1dc228062f3f97213d9980f (diff) | |
| download | emacs-96636402928874579cdae7e3d89c40e9de0c9170.tar.gz emacs-96636402928874579cdae7e3d89c40e9de0c9170.zip | |
Prevent Lisp nesting errors while bootstrapping.
lisp/Makefile.in: Compile vc-arch.el before others; having it loaded
from source while bootstrapping sometimes causes too deep nesting.
(Perhaps it's time to increase max-lisp-eval-depth?)
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-133
| -rw-r--r-- | lisp/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 9efd587a199..137a00d802d 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -128,7 +128,8 @@ COMPILE_FIRST = \ | |||
| 128 | $(lisp)/emacs-lisp/bytecomp.el \ | 128 | $(lisp)/emacs-lisp/bytecomp.el \ |
| 129 | $(lisp)/subr.el \ | 129 | $(lisp)/subr.el \ |
| 130 | $(lisp)/progmodes/cc-mode.el \ | 130 | $(lisp)/progmodes/cc-mode.el \ |
| 131 | $(lisp)/progmodes/cc-vars.el | 131 | $(lisp)/progmodes/cc-vars.el \ |
| 132 | $(lisp)/vc-arch.el | ||
| 132 | 133 | ||
| 133 | # The actual Emacs command run in the targets below. | 134 | # The actual Emacs command run in the targets below. |
| 134 | 135 | ||