aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2009-10-14 15:13:44 +0000
committerStefan Monnier2009-10-14 15:13:44 +0000
commit384ca163b3d31b678e243f0acb149a4fa9534db7 (patch)
tree5e5cc829f541055d5a24341ef9856fa18c0c7f5f
parent681e0e7c02c4f8ff6d316c8c24001106cb847023 (diff)
downloademacs-384ca163b3d31b678e243f0acb149a4fa9534db7.tar.gz
emacs-384ca163b3d31b678e243f0acb149a4fa9534db7.zip
(compile-onefile): Load `bytecomp' rather than `bytecomp.el'.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/Makefile.in4
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5c1112793e7..dcf19f1f10b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12009-10-14 Stefan Monnier <monnier@iro.umontreal.ca> 12009-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * Makefile.in (compile-onefile): Load `bytecomp' rather than
4 `bytecomp.el'.
5
3 * minibuffer.el (completion-pcm--merge-completions): Make sure the 6 * minibuffer.el (completion-pcm--merge-completions): Make sure the
4 string we return is all made up of text from the completions rather 7 string we return is all made up of text from the completions rather
5 than part from the completions and part from the input (bug#4219). 8 than part from the completions and part from the input (bug#4219).
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 78e95900b72..3674385c51c 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -1456,7 +1456,9 @@ ELCFILES = \
1456# the most common problems of not bootstrapping from a clean state. 1456# the most common problems of not bootstrapping from a clean state.
1457compile-onefile: 1457compile-onefile:
1458 @echo Compiling $(THEFILE) 1458 @echo Compiling $(THEFILE)
1459 @$(emacs) -l bytecomp.el -f byte-compile-refresh-preloaded $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(THEFILE) 1459 @# Use byte-compile-refresh-preloaded to try and work around some of
1460 @# the most common bootstrapping problems.
1461 @$(emacs) -l bytecomp -f byte-compile-refresh-preloaded $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(THEFILE)
1460 1462
1461# Files MUST be compiled one by one. If we compile several files in a 1463# Files MUST be compiled one by one. If we compile several files in a
1462# row (i.e., in the same instance of Emacs) we can't make sure that 1464# row (i.e., in the same instance of Emacs) we can't make sure that