diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-10-09 17:23:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-10-09 17:23:09 +0000 |
commit | 34791302d4f725161e81a48b6010b6b4af424470 (patch) | |
tree | 37632825901939b4717a12bcbf74a8098fe201da /lisp/emacs-lisp/bytecomp.el | |
parent | d5b22d8895eefbcb22eb67c3a2333f9872160260 (diff) | |
download | emacs-34791302d4f725161e81a48b6010b6b4af424470.tar.gz emacs-34791302d4f725161e81a48b6010b6b4af424470.tar.bz2 emacs-34791302d4f725161e81a48b6010b6b4af424470.zip |
(byte-compile-insert-header): Use user-mail-address.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index fa2ef9f3331..7af9455848e 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1336,7 +1336,7 @@ With argument, insert value in current buffer after the form." (if (byte-compile-version-cond byte-compile-compatibility) 18 19) "\000\000\000\n" ) - (insert ";;; compiled by " (user-login-name) "@" (system-name) " on " + (insert ";;; compiled by " user-mail-address " on " (current-time-string) "\n;;; from file " filename "\n") (insert ";;; emacs version " emacs-version ".\n") (insert ";;; bytecomp version " byte-compile-version "\n;;; " |