changeset 23586:58e75110c086

(eldoc-argument-case): Fix customize type.
author Andreas Schwab <schwab@suse.de>
date Fri, 30 Oct 1998 10:59:23 +0000
parents e8884769bd83
children 26749ef98f6c
files lisp/emacs-lisp/eldoc.el
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/eldoc.el	Fri Oct 30 10:58:37 1998 +0000
+++ b/lisp/emacs-lisp/eldoc.el	Fri Oct 30 10:59:23 1998 +0000
@@ -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 @@
 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.