aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman2002-01-08 23:57:49 +0000
committerRichard M. Stallman2002-01-08 23:57:49 +0000
commite3b2eba1b6fd0af559d597a9b1832678b10db4e3 (patch)
tree8da9c988a2e8dc6f9462c97b3e28f9dd46728228 /lisp
parent5c2012be06c6a9d524e0d26781ac43b87bfcc19b (diff)
downloademacs-e3b2eba1b6fd0af559d597a9b1832678b10db4e3.tar.gz
emacs-e3b2eba1b6fd0af559d597a9b1832678b10db4e3.zip
(eldoc-minor-mode-string): Fix custom type.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/emacs-lisp/eldoc.el6
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6d3e0bd2dcb..d7666677abc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12002-01-08 Richard M. Stallman <rms@gnu.org>
2
3 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Fix custom type.
4
5 * textmodes/flyspell.el (flyspell-mode-line-string): Fix custom type.
6
12002-01-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 72002-01-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 8
3 * progmodes/ada-mode.el (ada-initialize-properties, ada-mode): Do 9 * progmodes/ada-mode.el (ada-initialize-properties, ada-mode): Do
diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el
index 4b86f0d08ec..042b93886cb 100644
--- a/lisp/emacs-lisp/eldoc.el
+++ b/lisp/emacs-lisp/eldoc.el
@@ -7,7 +7,7 @@
7;; Keywords: extensions 7;; Keywords: extensions
8;; Created: 1995-10-06 8;; Created: 1995-10-06
9 9
10;; $Id: eldoc.el,v 1.18 2000/12/02 20:10:49 schwab Exp $ 10;; $Id: eldoc.el,v 1.19 2001/11/16 23:58:48 monnier Exp $
11 11
12;; This file is part of GNU Emacs. 12;; This file is part of GNU Emacs.
13 13
@@ -70,8 +70,8 @@ If this variable is set to 0, no idle time is required."
70 70
71;;;###autoload 71;;;###autoload
72(defcustom eldoc-minor-mode-string " ElDoc" 72(defcustom eldoc-minor-mode-string " ElDoc"
73 "*String to display in mode line when Eldoc Mode is enabled." 73 "*String to display in mode line when Eldoc Mode is enabled; nil for none."
74 :type 'string 74 :type '(choice string (const :tag "None" nil))
75 :group 'eldoc) 75 :group 'eldoc)
76 76
77(defcustom eldoc-argument-case 'upcase 77(defcustom eldoc-argument-case 'upcase