diff options
author | Andreas Schwab <schwab@suse.de> | 1998-06-24 08:54:53 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-06-24 08:54:53 +0000 |
commit | eaaca5ee781820a33749ca6db15097ce14dda48c (patch) | |
tree | 4ca963437d23f1aa5a3d968f18ce32810a2557e9 /lisp/dabbrev.el | |
parent | 79221864ab7be8001b5b5bbac1349505c1b39000 (diff) | |
download | emacs-eaaca5ee781820a33749ca6db15097ce14dda48c.tar.gz |
(dabbrev-case-fold-search, dabbrev-case-replace,
dabbrev-check-other-buffers): Use `other' widget type.
Diffstat (limited to 'lisp/dabbrev.el')
-rw-r--r-- | lisp/dabbrev.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el index d6ce4ee8c72..5d27a8bd0e3 100644 --- a/lisp/dabbrev.el +++ b/lisp/dabbrev.el @@ -134,8 +134,8 @@ A value of `case-fold-search' means case is significant if `case-fold-search' is nil. Any other non-nil version means case is not significant." :type '(choice (const :tag "off" nil) - (const :tag "on" t) - (const :tag "like search" case-fold-search)) + (const :tag "like search" case-fold-search) + (other :tag "on" t)) :group 'dabbrev) (defcustom dabbrev-upcase-means-case-search nil @@ -156,8 +156,8 @@ Any other non-nil version means do not preserve case. This variable has an effect only when the value of `dabbrev-case-fold-search' specifies to ignore case." :type '(choice (const :tag "off" nil) - (const :tag "on" t) - (const :tag "like M-x query-replace" case-replace)) + (const :tag "like M-x query-replace" case-replace) + (other :tag "on" t)) :group 'dabbrev) (defcustom dabbrev-abbrev-char-regexp nil @@ -216,7 +216,7 @@ buffers too. The default value is t." :type '(choice (const :tag "off" nil) (const :tag "on" t) - (const :tag "ask" other)) + (other :tag "ask" other)) :group 'dabbrev) ;; I guess setting this to a function that selects all C- or C++- |