emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog Makefile.in


From: Stefan Monnier
Subject: [Emacs-diffs] emacs/lisp ChangeLog Makefile.in
Date: Wed, 14 Oct 2009 15:13:47 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        09/10/14 15:13:46

Modified files:
        lisp           : ChangeLog Makefile.in 

Log message:
        (compile-onefile): Load `bytecomp' rather than `bytecomp.el'.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16424&r2=1.16425
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/Makefile.in?cvsroot=emacs&r1=1.202&r2=1.203

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16424
retrieving revision 1.16425
diff -u -b -r1.16424 -r1.16425
--- ChangeLog   14 Oct 2009 15:10:09 -0000      1.16424
+++ ChangeLog   14 Oct 2009 15:13:44 -0000      1.16425
@@ -1,5 +1,8 @@
 2009-10-14  Stefan Monnier  <address@hidden>
 
+       * Makefile.in (compile-onefile): Load `bytecomp' rather than
+       `bytecomp.el'.
+
        * minibuffer.el (completion-pcm--merge-completions): Make sure the
        string we return is all made up of text from the completions rather
        than part from the completions and part from the input (bug#4219).

Index: Makefile.in
===================================================================
RCS file: /sources/emacs/emacs/lisp/Makefile.in,v
retrieving revision 1.202
retrieving revision 1.203
diff -u -b -r1.202 -r1.203
--- Makefile.in 7 Oct 2009 07:19:09 -0000       1.202
+++ Makefile.in 14 Oct 2009 15:13:46 -0000      1.203
@@ -1456,7 +1456,9 @@
 # the most common problems of not bootstrapping from a clean state.
 compile-onefile:
        @echo Compiling $(THEFILE)
-       @$(emacs) -l bytecomp.el -f byte-compile-refresh-preloaded 
$(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(THEFILE)
+       @# Use byte-compile-refresh-preloaded to try and work around some of
+       @# the most common bootstrapping problems.
+       @$(emacs) -l bytecomp -f byte-compile-refresh-preloaded 
$(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(THEFILE)
 
 # Files MUST be compiled one by one. If we compile several files in a
 # row (i.e., in the same instance of Emacs) we can't make sure that




reply via email to

[Prev in Thread] Current Thread [Next in Thread]