aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-09-09 02:56:04 +0000
committerRichard M. Stallman1997-09-09 02:56:04 +0000
commitfec1279bc2223c6cd3c7d6373227d7af4b6e832f (patch)
tree8dbc2c257c165766db620dc65975788ec09618a8
parent0a53202aab96d569ac8637f97a8f9138f5f6532c (diff)
downloademacs-fec1279bc2223c6cd3c7d6373227d7af4b6e832f.tar.gz
emacs-fec1279bc2223c6cd3c7d6373227d7af4b6e832f.zip
(dabbrev-case-fold-search): Remove extra quote in customize constant.
(dabbrev-case-replace): Likewise.
-rw-r--r--lisp/dabbrev.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el
index 90f67a9f23e..ab134ce3aee 100644
--- a/lisp/dabbrev.el
+++ b/lisp/dabbrev.el
@@ -134,7 +134,7 @@ A value of `case-fold-search' means case is significant
134Any other non-nil version means case is not significant." 134Any other non-nil version means case is not significant."
135 :type '(choice (const :tag "off" nil) 135 :type '(choice (const :tag "off" nil)
136 (const :tag "on" t) 136 (const :tag "on" t)
137 (const :tag "like search" 'case-fold-search)) 137 (const :tag "like search" case-fold-search))
138 :group 'dabbrev) 138 :group 'dabbrev)
139 139
140(defcustom dabbrev-upcase-means-case-search nil 140(defcustom dabbrev-upcase-means-case-search nil
@@ -156,7 +156,7 @@ This variable has an effect only when the value of
156`dabbrev-case-fold-search' specifies to ignore case." 156`dabbrev-case-fold-search' specifies to ignore case."
157 :type '(choice (const :tag "off" nil) 157 :type '(choice (const :tag "off" nil)
158 (const :tag "on" t) 158 (const :tag "on" t)
159 (const :tag "like M-x query-replace" 'case-replace)) 159 (const :tag "like M-x query-replace" case-replace))
160 :group 'dabbrev) 160 :group 'dabbrev)
161 161
162(defcustom dabbrev-abbrev-char-regexp nil 162(defcustom dabbrev-abbrev-char-regexp nil