diff options
author | Markus Rost <rost@math.uni-bielefeld.de> | 2002-07-23 02:28:08 +0000 |
---|---|---|
committer | Markus Rost <rost@math.uni-bielefeld.de> | 2002-07-23 02:28:08 +0000 |
commit | 24f4201f844cd0617a79f485e4bd7bcb6766dccb (patch) | |
tree | 386c346addd76c499d69adb525d82294d4e5dd16 /lisp/add-log.el | |
parent | 610a4f648645eb8c66303c64c9be909e2ca93ee8 (diff) | |
download | emacs-24f4201f844cd0617a79f485e4bd7bcb6766dccb.tar.gz |
(add-log-mailing-address): Fix type. Can be a string.
Diffstat (limited to 'lisp/add-log.el')
-rw-r--r-- | lisp/add-log.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el index 6544b10fde3..e4c95de0b62 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -73,7 +73,8 @@ 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) - (repeat string)) + (string :tag "String") + (repeat :tag "List of Strings" string)) :group 'change-log) (defcustom add-log-time-format 'add-log-iso8601-time-string |