]> git.eshelyaron.com Git - emacs.git/commitdiff
(COMPILE_FIRST): Add cc-mode.el
authorGerd Moellmann <gerd@gnu.org>
Wed, 21 Mar 2001 12:56:09 +0000 (12:56 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 21 Mar 2001 12:56:09 +0000 (12:56 +0000)
and cc-vars.el.

lisp/ChangeLog
lisp/Makefile.in
lisp/makefile.w32-in

index e0fa35fe33980a5e223d2d345009237c79faf5cb..e094f5cc0b25d37930f23ddb7cff7708bc7e0d97 100644 (file)
@@ -1,5 +1,8 @@
 2001-03-21  Gerd Moellmann  <gerd@gnu.org>
 
+       * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el
+       and cc-vars.el.
+
        * mail/sendmail.el (sendmail-send-it): Don't parse Resent-*
        headers.  Always invoke sendmail with option -t.
 
index 966ac9b8cf562d47e8f2644f0a83722604ce23de..3fb63dcc52398e079122a9f500fa79dba2d3ecfa 100644 (file)
@@ -94,13 +94,18 @@ DONTCOMPILE = \
        $(lisp)/term/xterm.el \
        $(lisp)/version.el
 
-# Files to compile before others during a bootstrap.  This is done
-# to speed up the bootstrap process.
+# Files to compile before others during a bootstrap.  This is done to
+# speed up the bootstrap process.  The CC files are compiled first
+# because CC mode tweaks the compilation process, and requiring
+# cc-mode when it is not compiled doesn't work during the
+# bootstrapping.
 
 COMPILE_FIRST = \
        $(lisp)/emacs-lisp/byte-opt.el \
        $(lisp)/emacs-lisp/bytecomp.el \
-       $(lisp)/subr.el
+       $(lisp)/subr.el \
+       $(lisp)/progmodes/cc-mode.el \
+       $(lisp)/progmodes/cc-vars.el
 
 # The actual Emacs command run in the targets below.
 
index 4ec329427229ced0507e581dd079127690b07ac3..95a5bcab8c7f48cdc35ff5ce2eaabbc28f7c3979 100644 (file)
@@ -96,13 +96,18 @@ DONTCOMPILE = \
        $(lisp)/term/xterm.el \
        $(lisp)/version.el
 
-# Files to compile before others during a bootstrap.  This is done
-# to speed up the bootstrap process.
+# Files to compile before others during a bootstrap.  This is done to
+# speed up the bootstrap process.  The CC files are compiled first
+# because CC mode tweaks the compilation process, and requiring
+# cc-mode when it is not compiled doesn't work during the
+# bootstrapping.
 
 COMPILE_FIRST = \
        $(lisp)/emacs-lisp/byte-opt.el \
        $(lisp)/emacs-lisp/bytecomp.el \
-       $(lisp)/subr.el
+       $(lisp)/subr.el \
+       $(lisp)/progmodes/cc-mode.el \
+       $(lisp)/progmodes/cc-vars.el
 
 # The actual Emacs command run in the targets below.