From 170a9e70c18727df0544a01d6bac040d65513409 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Wed, 21 Mar 2001 12:56:09 +0000 Subject: [PATCH] (COMPILE_FIRST): Add cc-mode.el and cc-vars.el. --- lisp/ChangeLog | 3 +++ lisp/Makefile.in | 11 ++++++++--- lisp/makefile.w32-in | 11 ++++++++--- 3 files changed, 19 insertions(+), 6 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e0fa35fe339..e094f5cc0b2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2001-03-21 Gerd Moellmann + * 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. diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 966ac9b8cf5..3fb63dcc523 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -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. diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 4ec32942722..95a5bcab8c7 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -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. -- 2.39.2