aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/bytecomp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 333fde26491..b368f40e3bf 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -1376,7 +1376,7 @@ With argument, insert value in current buffer after the form."
1376 "\000\000\000\n" 1376 "\000\000\000\n"
1377 ) 1377 )
1378 (insert ";;; compiled by " 1378 (insert ";;; compiled by "
1379 (or user-mail-address 1379 (or (and (boundp 'user-mail-address) user-mail-address)
1380 (concat (user-login-name) "@" (system-name))) 1380 (concat (user-login-name) "@" (system-name)))
1381 " on " 1381 " on "
1382 (current-time-string) "\n;;; from file " filename "\n") 1382 (current-time-string) "\n;;; from file " filename "\n")