diff options
| author | Gerd Moellmann | 2001-03-21 12:56:09 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-03-21 12:56:09 +0000 |
| commit | 170a9e70c18727df0544a01d6bac040d65513409 (patch) | |
| tree | cdbb6c1c84dca649f5b1e0cb1551b555b4f26e38 | |
| parent | 1e406be025b55cda1a0b8604504e36048878c0e7 (diff) | |
| download | emacs-170a9e70c18727df0544a01d6bac040d65513409.tar.gz emacs-170a9e70c18727df0544a01d6bac040d65513409.zip | |
(COMPILE_FIRST): Add cc-mode.el
and cc-vars.el.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/Makefile.in | 11 | ||||
| -rw-r--r-- | 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 @@ | |||
| 1 | 2001-03-21 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-03-21 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el | ||
| 4 | and cc-vars.el. | ||
| 5 | |||
| 3 | * mail/sendmail.el (sendmail-send-it): Don't parse Resent-* | 6 | * mail/sendmail.el (sendmail-send-it): Don't parse Resent-* |
| 4 | headers. Always invoke sendmail with option -t. | 7 | headers. Always invoke sendmail with option -t. |
| 5 | 8 | ||
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 = \ | |||
| 94 | $(lisp)/term/xterm.el \ | 94 | $(lisp)/term/xterm.el \ |
| 95 | $(lisp)/version.el | 95 | $(lisp)/version.el |
| 96 | 96 | ||
| 97 | # Files to compile before others during a bootstrap. This is done | 97 | # Files to compile before others during a bootstrap. This is done to |
| 98 | # to speed up the bootstrap process. | 98 | # speed up the bootstrap process. The CC files are compiled first |
| 99 | # because CC mode tweaks the compilation process, and requiring | ||
| 100 | # cc-mode when it is not compiled doesn't work during the | ||
| 101 | # bootstrapping. | ||
| 99 | 102 | ||
| 100 | COMPILE_FIRST = \ | 103 | COMPILE_FIRST = \ |
| 101 | $(lisp)/emacs-lisp/byte-opt.el \ | 104 | $(lisp)/emacs-lisp/byte-opt.el \ |
| 102 | $(lisp)/emacs-lisp/bytecomp.el \ | 105 | $(lisp)/emacs-lisp/bytecomp.el \ |
| 103 | $(lisp)/subr.el | 106 | $(lisp)/subr.el \ |
| 107 | $(lisp)/progmodes/cc-mode.el \ | ||
| 108 | $(lisp)/progmodes/cc-vars.el | ||
| 104 | 109 | ||
| 105 | # The actual Emacs command run in the targets below. | 110 | # The actual Emacs command run in the targets below. |
| 106 | 111 | ||
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 = \ | |||
| 96 | $(lisp)/term/xterm.el \ | 96 | $(lisp)/term/xterm.el \ |
| 97 | $(lisp)/version.el | 97 | $(lisp)/version.el |
| 98 | 98 | ||
| 99 | # Files to compile before others during a bootstrap. This is done | 99 | # Files to compile before others during a bootstrap. This is done to |
| 100 | # to speed up the bootstrap process. | 100 | # speed up the bootstrap process. The CC files are compiled first |
| 101 | # because CC mode tweaks the compilation process, and requiring | ||
| 102 | # cc-mode when it is not compiled doesn't work during the | ||
| 103 | # bootstrapping. | ||
| 101 | 104 | ||
| 102 | COMPILE_FIRST = \ | 105 | COMPILE_FIRST = \ |
| 103 | $(lisp)/emacs-lisp/byte-opt.el \ | 106 | $(lisp)/emacs-lisp/byte-opt.el \ |
| 104 | $(lisp)/emacs-lisp/bytecomp.el \ | 107 | $(lisp)/emacs-lisp/bytecomp.el \ |
| 105 | $(lisp)/subr.el | 108 | $(lisp)/subr.el \ |
| 109 | $(lisp)/progmodes/cc-mode.el \ | ||
| 110 | $(lisp)/progmodes/cc-vars.el | ||
| 106 | 111 | ||
| 107 | # The actual Emacs command run in the targets below. | 112 | # The actual Emacs command run in the targets below. |
| 108 | 113 | ||