summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-09-09 02:56:04 +0000
committerRichard M. Stallman <rms@gnu.org>1997-09-09 02:56:04 +0000
commit2cb658af2966eeebdd5ac0506ddcd0c841a59107 (patch)
tree4b11f0e1f48a6e2d05328a260b5edae99e134e9c
parent844fa26a99afd589dc5ad844d89a46ba7b22efcf (diff)
downloademacs-2cb658af2966eeebdd5ac0506ddcd0c841a59107.tar.gz
(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
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))
:group 'dabbrev)
(defcustom dabbrev-upcase-means-case-search nil
@@ -156,7 +156,7 @@ 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))
:group 'dabbrev)
(defcustom dabbrev-abbrev-char-regexp nil