diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-06-25 00:35:12 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-06-25 00:35:12 +0000 |
commit | fb38ca867d26fa7aa524879fa63efef00d53e2d9 (patch) | |
tree | 5ccb055305d1daf84dcc4fd1e620678d420fe637 /lisp/add-log.el | |
parent | c10d1f062efd64e5f1a8aa799e2b4feb68483667 (diff) | |
download | emacs-fb38ca867d26fa7aa524879fa63efef00d53e2d9.tar.gz emacs-fb38ca867d26fa7aa524879fa63efef00d53e2d9.tar.bz2 emacs-fb38ca867d26fa7aa524879fa63efef00d53e2d9.zip |
(add-log-mailing-address): Use user-mail-address.
Diffstat (limited to 'lisp/add-log.el')
-rw-r--r-- | lisp/add-log.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el index 721ef24ccfd..6980578c68a 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -43,10 +43,9 @@ This defaults to the value returned by the `user-full-name' function.") ;; This MUST not be autoloaded, since user-login-name ;; cannot be known at Emacs dump time. -(defvar add-log-mailing-address (concat (user-login-name) "@" (system-name)) +(defvar add-log-mailing-address user-mail-address "*Electronic mail address of user, for inclusion in ChangeLog daily headers. -This defaults to the value returned by `user-login-name', followed by -an `@' character, followed by the value returned by `system-name'.") +This defaults to the value of `user-mail-address'.") (defun change-log-name () (or change-log-default-name |