(byte-compile-insert-header): Cope if user-mail-address is unbound.
This commit is contained in:
parent
bcde3748c6
commit
09bc9531d9
1 changed files with 1 additions and 1 deletions
|
@ -1376,7 +1376,7 @@ With argument, insert value in current buffer after the form."
|
|||
"\000\000\000\n"
|
||||
)
|
||||
(insert ";;; compiled by "
|
||||
(or user-mail-address
|
||||
(or (and (boundp 'user-mail-address) user-mail-address)
|
||||
(concat (user-login-name) "@" (system-name)))
|
||||
" on "
|
||||
(current-time-string) "\n;;; from file " filename "\n")
|
||||
|
|
Loading…
Add table
Reference in a new issue