diff options
| author | Markus Rost | 2002-07-23 02:28:08 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-07-23 02:28:08 +0000 |
| commit | 24f4201f844cd0617a79f485e4bd7bcb6766dccb (patch) | |
| tree | 386c346addd76c499d69adb525d82294d4e5dd16 | |
| parent | 610a4f648645eb8c66303c64c9be909e2ca93ee8 (diff) | |
| download | emacs-24f4201f844cd0617a79f485e4bd7bcb6766dccb.tar.gz emacs-24f4201f844cd0617a79f485e4bd7bcb6766dccb.zip | |
(add-log-mailing-address): Fix type. Can be a string.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/add-log.el | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e99afd4e319..46072028631 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2002-07-22 Markus Rost <rost@math.ohio-state.edu> | ||
| 2 | |||
| 3 | * add-log.el (add-log-mailing-address): Fix type. Can be a | ||
| 4 | string. | ||
| 5 | |||
| 6 | * ido.el (ido-separator): Fix type. | ||
| 7 | |||
| 1 | 2002-07-23 Andrew Innes <andrewi@gnu.org> | 8 | 2002-07-23 Andrew Innes <andrewi@gnu.org> |
| 2 | 9 | ||
| 3 | * makefile.w32-in (DONTCOMPILE): Remove cus-start.el. | 10 | * 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 | |||
| 73 | will be recognized as referring to the same user; when creating a new | 73 | will be recognized as referring to the same user; when creating a new |
| 74 | ChangeLog entry, one element will be chosen at random." | 74 | ChangeLog entry, one element will be chosen at random." |
| 75 | :type '(choice (const :tag "Default" nil) | 75 | :type '(choice (const :tag "Default" nil) |
| 76 | (repeat string)) | 76 | (string :tag "String") |
| 77 | (repeat :tag "List of Strings" string)) | ||
| 77 | :group 'change-log) | 78 | :group 'change-log) |
| 78 | 79 | ||
| 79 | (defcustom add-log-time-format 'add-log-iso8601-time-string | 80 | (defcustom add-log-time-format 'add-log-iso8601-time-string |