diff options
author | Andreas Schwab <schwab@suse.de> | 1998-10-30 10:59:23 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-10-30 10:59:23 +0000 |
commit | 0ba87ff4f34c52c23de2617061e3b1114a82f466 (patch) | |
tree | be74611f32d828048c9911a70a840b1984aa9bf4 /lisp/emacs-lisp/eldoc.el | |
parent | 6d38633e33a7888609429f81039e13ee6b53816d (diff) |
(eldoc-argument-case): Fix customize type.
Diffstat (limited to 'lisp/emacs-lisp/eldoc.el')
-rw-r--r-- | lisp/emacs-lisp/eldoc.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el index f294ddbfe8..c51505adda 100644 --- a/lisp/emacs-lisp/eldoc.el +++ b/lisp/emacs-lisp/eldoc.el @@ -7,7 +7,7 @@ ;; Keywords: extensions ;; Created: 1995-10-06 -;; $Id: eldoc.el,v 1.14 1997/07/09 12:44:15 friedman Exp $ +;; $Id: eldoc.el,v 1.15 1998/09/19 02:15:26 friedman Exp $ ;; This file is part of GNU Emacs. @@ -101,7 +101,9 @@ If this variable is set to 0, no idle time is required." This has two preferred values: `upcase' or `downcase'. Actually, any name of a function which takes a string as an argument and returns another string is acceptable." - :type '(choice (const upcase) (const downcase)) + :type '(radio function + (function-item upcase) + (function-item downcase)) :group 'eldoc) ;; No user options below here. |