emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r112341: No longer include timestamp


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112341: No longer include timestamp in header of .elc files
Date: Sat, 20 Apr 2013 12:48:04 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 112341
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2013-04-20 12:48:04 -0700
message:
  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.
modified:
  etc/NEWS
  lisp/ChangeLog
  lisp/emacs-lisp/bytecomp.el
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2013-04-18 02:20:12 +0000
+++ b/etc/NEWS  2013-04-20 19:48:04 +0000
@@ -75,6 +75,8 @@
 using the scroll bar (i.e. dragging the thumb down even when the end
 of the buffer is visible).
 
+** In compiled Lisp files, the header no longer includes a timestamp.
+
 
 * Editing Changes in Emacs 24.4
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-04-20 19:11:25 +0000
+++ b/lisp/ChangeLog    2013-04-20 19:48:04 +0000
@@ -1,3 +1,8 @@
+2013-04-20  Glenn Morris  <address@hidden>
+
+       * emacs-lisp/bytecomp.el (byte-compile-insert-header):
+       No longer include timestamp etc information.
+
 2013-04-20  Roland Winkler  <address@hidden>
 
        * faces.el (read-face-name): Bug fix, return just one face if arg

=== modified file 'lisp/emacs-lisp/bytecomp.el'
--- a/lisp/emacs-lisp/bytecomp.el       2013-02-25 23:27:50 +0000
+++ b/lisp/emacs-lisp/bytecomp.el       2013-04-20 19:48:04 +0000
@@ -1997,11 +1997,7 @@
       ;; >4    byte            x               version %d
       (insert
        ";ELC" 23 "\000\000\000\n"
-       ";;; Compiled by "
-       (or (and (boundp 'user-mail-address) user-mail-address)
-          (concat (user-login-name) "@" (system-name)))
-       " on " (current-time-string) "\n"
-       ";;; from file " filename "\n"
+       ";;; Compiled\n"
        ";;; in Emacs version " emacs-version "\n"
        ";;; with"
        (cond


reply via email to

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