aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab1998-06-24 08:54:53 +0000
committerAndreas Schwab1998-06-24 08:54:53 +0000
commiteaaca5ee781820a33749ca6db15097ce14dda48c (patch)
tree4ca963437d23f1aa5a3d968f18ce32810a2557e9
parent79221864ab7be8001b5b5bbac1349505c1b39000 (diff)
downloademacs-eaaca5ee781820a33749ca6db15097ce14dda48c.tar.gz
emacs-eaaca5ee781820a33749ca6db15097ce14dda48c.zip
(dabbrev-case-fold-search, dabbrev-case-replace,
dabbrev-check-other-buffers): Use `other' widget type.
-rw-r--r--lisp/dabbrev.el10
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
134 if `case-fold-search' is nil. 134 if `case-fold-search' is nil.
135Any other non-nil version means case is not significant." 135Any other non-nil version means case is not significant."
136 :type '(choice (const :tag "off" nil) 136 :type '(choice (const :tag "off" nil)
137 (const :tag "on" t) 137 (const :tag "like search" case-fold-search)
138 (const :tag "like search" case-fold-search)) 138 (other :tag "on" t))
139 :group 'dabbrev) 139 :group 'dabbrev)
140 140
141(defcustom dabbrev-upcase-means-case-search nil 141(defcustom dabbrev-upcase-means-case-search nil
@@ -156,8 +156,8 @@ Any other non-nil version means do not preserve case.
156This variable has an effect only when the value of 156This variable has an effect only when the value of
157`dabbrev-case-fold-search' specifies to ignore case." 157`dabbrev-case-fold-search' specifies to ignore case."
158 :type '(choice (const :tag "off" nil) 158 :type '(choice (const :tag "off" nil)
159 (const :tag "on" t) 159 (const :tag "like M-x query-replace" case-replace)
160 (const :tag "like M-x query-replace" case-replace)) 160 (other :tag "on" t))
161 :group 'dabbrev) 161 :group 'dabbrev)
162 162
163(defcustom dabbrev-abbrev-char-regexp nil 163(defcustom dabbrev-abbrev-char-regexp nil
@@ -216,7 +216,7 @@ buffers too.
216The default value is t." 216The default value is t."
217 :type '(choice (const :tag "off" nil) 217 :type '(choice (const :tag "off" nil)
218 (const :tag "on" t) 218 (const :tag "on" t)
219 (const :tag "ask" other)) 219 (other :tag "ask" other))
220 :group 'dabbrev) 220 :group 'dabbrev)
221 221
222;; I guess setting this to a function that selects all C- or C++- 222;; I guess setting this to a function that selects all C- or C++-