aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-04-20 12:48:04 -0700
committerGlenn Morris2013-04-20 12:48:04 -0700
commita6d63d97cd7f213a87630ab86119b469a89caeeb (patch)
treef64970c5ebc4f976d584efafeb5d79900e157a8b
parent61655fd96ce959e47ad8d047387e5585843fc789 (diff)
downloademacs-a6d63d97cd7f213a87630ab86119b469a89caeeb.tar.gz
emacs-a6d63d97cd7f213a87630ab86119b469a89caeeb.zip
No longer include timestamp in header of .elc files
This removes needless differences between files compiled at different times or by different people, or from sources in different locations. Ref: http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00187.html * lisp/emacs-lisp/bytecomp.el (byte-compile-insert-header): No longer include timestamp etc information. * etc/NEWS: Mention this.
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emacs-lisp/bytecomp.el6
3 files changed, 8 insertions, 5 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 8f64aa6e7ee..83913bf88b8 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -75,6 +75,8 @@ Available only on X, this option allows to control over-scrolling
75using the scroll bar (i.e. dragging the thumb down even when the end 75using the scroll bar (i.e. dragging the thumb down even when the end
76of the buffer is visible). 76of the buffer is visible).
77 77
78** In compiled Lisp files, the header no longer includes a timestamp.
79
78 80
79* Editing Changes in Emacs 24.4 81* Editing Changes in Emacs 24.4
80 82
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2f625deedc6..07a5bb9231d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-04-20 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
4 No longer include timestamp etc information.
5
12013-04-20 Roland Winkler <winkler@gnu.org> 62013-04-20 Roland Winkler <winkler@gnu.org>
2 7
3 * faces.el (read-face-name): Bug fix, return just one face if arg 8 * faces.el (read-face-name): Bug fix, return just one face if arg
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 5db1793a407..755d5f716d3 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -1997,11 +1997,7 @@ Call from the source buffer."
1997 ;; >4 byte x version %d 1997 ;; >4 byte x version %d
1998 (insert 1998 (insert
1999 ";ELC" 23 "\000\000\000\n" 1999 ";ELC" 23 "\000\000\000\n"
2000 ";;; Compiled by " 2000 ";;; Compiled\n"
2001 (or (and (boundp 'user-mail-address) user-mail-address)
2002 (concat (user-login-name) "@" (system-name)))
2003 " on " (current-time-string) "\n"
2004 ";;; from file " filename "\n"
2005 ";;; in Emacs version " emacs-version "\n" 2001 ";;; in Emacs version " emacs-version "\n"
2006 ";;; with" 2002 ";;; with"
2007 (cond 2003 (cond