1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -08:00

(eldoc-minor-mode-string): Fix custom type.

This commit is contained in:
Richard M. Stallman 2002-01-08 23:57:49 +00:00
parent 5c2012be06
commit e3b2eba1b6
2 changed files with 9 additions and 3 deletions

View 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,Bm(Bk <Pavel@Janik.cz> 2002-01-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
* progmodes/ada-mode.el (ada-initialize-properties, ada-mode): Do * progmodes/ada-mode.el (ada-initialize-properties, ada-mode): Do

View file

@ -7,7 +7,7 @@
;; Keywords: extensions ;; Keywords: extensions
;; Created: 1995-10-06 ;; 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. ;; This file is part of GNU Emacs.
@ -70,8 +70,8 @@ If this variable is set to 0, no idle time is required."
;;;###autoload ;;;###autoload
(defcustom eldoc-minor-mode-string " ElDoc" (defcustom eldoc-minor-mode-string " ElDoc"
"*String to display in mode line when Eldoc Mode is enabled." "*String to display in mode line when Eldoc Mode is enabled; nil for none."
:type 'string :type '(choice string (const :tag "None" nil))
:group 'eldoc) :group 'eldoc)
(defcustom eldoc-argument-case 'upcase (defcustom eldoc-argument-case 'upcase