aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/add-log.el3
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 @@
12002-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
12002-07-23 Andrew Innes <andrewi@gnu.org> 82002-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
73will be recognized as referring to the same user; when creating a new 73will be recognized as referring to the same user; when creating a new
74ChangeLog entry, one element will be chosen at random." 74ChangeLog 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