From 24f4201f844cd0617a79f485e4bd7bcb6766dccb Mon Sep 17 00:00:00 2001 From: Markus Rost Date: Tue, 23 Jul 2002 02:28:08 +0000 Subject: [PATCH] (add-log-mailing-address): Fix type. Can be a string. --- lisp/ChangeLog | 7 +++++++ lisp/add-log.el | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e99afd4e319..46072028631 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2002-07-22 Markus Rost + + * add-log.el (add-log-mailing-address): Fix type. Can be a + string. + + * ido.el (ido-separator): Fix type. + 2002-07-23 Andrew Innes * makefile.w32-in (DONTCOMPILE): Remove cus-start.el. 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 -- 2.39.5