Variable: add-log-mailing-address
add-log-mailing-address is a customizable variable defined in
add-log.el.gz.
Value
nil
Documentation
Email addresses of user, for inclusion in ChangeLog headers.
This defaults to the value of user-mail-address. In addition to
being a simple string, this value can also be a list. All elements
will be recognized as referring to the same user; when creating a new
ChangeLog entry, one element will be chosen at random.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/add-log.el.gz
;;;###autoload
(defcustom add-log-mailing-address nil
"Email addresses of user, for inclusion in ChangeLog headers.
This defaults to the value of `user-mail-address'. In addition to
being a simple string, this value can also be a list. All elements
will be recognized as referring to the same user; when creating a new
ChangeLog entry, one element will be chosen at random."
:type '(choice (const :tag "Default" nil)
(string :tag "String")
(repeat :tag "List of Strings" string)))