mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-22 04:47:34 +00:00
(add-log-mailing-address): Fix type. Can be a string.
This commit is contained in:
parent
610a4f6486
commit
24f4201f84
2 changed files with 9 additions and 1 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2002-07-22 Markus Rost <rost@math.ohio-state.edu>
|
||||
|
||||
* add-log.el (add-log-mailing-address): Fix type. Can be a
|
||||
string.
|
||||
|
||||
* ido.el (ido-separator): Fix type.
|
||||
|
||||
2002-07-23 Andrew Innes <andrewi@gnu.org>
|
||||
|
||||
* makefile.w32-in (DONTCOMPILE): Remove cus-start.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
|
||||
|
|
|
|||
Loading…
Reference in a new issue