# HG changeset patch # User Karoly Lorentey # Date 1081436977 0 # Node ID fd7beda03521c90e12c33a5258a06370a67df1a6 # Parent 1029206e72f2decc322ae01ecd7826f30d482c0a 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 diff -r 1029206e72f2 -r fd7beda03521 lisp/Makefile.in --- a/lisp/Makefile.in Thu Apr 08 12:29:09 2004 +0000 +++ b/lisp/Makefile.in Thu Apr 08 15:09:37 2004 +0000 @@ -128,7 +128,8 @@ $(lisp)/emacs-lisp/bytecomp.el \ $(lisp)/subr.el \ $(lisp)/progmodes/cc-mode.el \ - $(lisp)/progmodes/cc-vars.el + $(lisp)/progmodes/cc-vars.el \ + $(lisp)/vc-arch.el # The actual Emacs command run in the targets below.