]> git.eshelyaron.com Git - emacs.git/commitdiff
(eldoc-minor-mode-string): Fix custom type.
authorRichard M. Stallman <rms@gnu.org>
Tue, 8 Jan 2002 23:57:49 +0000 (23:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 8 Jan 2002 23:57:49 +0000 (23:57 +0000)
lisp/ChangeLog
lisp/emacs-lisp/eldoc.el

index 6d3e0bd2dcb154db04c8df748ffcb04531f9f88a..d7666677abc220f32f195810b5d1c00a64cf7482 100644 (file)
@@ -1,3 +1,9 @@
+2002-01-08  Richard M. Stallman  <rms@gnu.org>
+
+       * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Fix custom type.
+
+       * textmodes/flyspell.el (flyspell-mode-line-string): Fix custom type.
+
 2002-01-08  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
        * progmodes/ada-mode.el (ada-initialize-properties, ada-mode): Do
index 4b86f0d08ecb2edd8b7588e433ab86181f4c9c7c..042b93886cb6a3abd4c00356712c831dc2ae0857 100644 (file)
@@ -7,7 +7,7 @@
 ;; Keywords: extensions
 ;; Created: 1995-10-06
 
-;; $Id: eldoc.el,v 1.18 2000/12/02 20:10:49 schwab Exp $
+;; $Id: eldoc.el,v 1.19 2001/11/16 23:58:48 monnier Exp $
 
 ;; This file is part of GNU Emacs.
 
@@ -70,8 +70,8 @@ If this variable is set to 0, no idle time is required."
 
 ;;;###autoload
 (defcustom eldoc-minor-mode-string " ElDoc"
-  "*String to display in mode line when Eldoc Mode is enabled."
-  :type 'string
+  "*String to display in mode line when Eldoc Mode is enabled; nil for none."
+  :type '(choice string (const :tag "None" nil))
   :group 'eldoc)
 
 (defcustom eldoc-argument-case 'upcase