]> git.eshelyaron.com Git - emacs.git/commitdiff
(dabbrev-case-fold-search): Remove extra quote in customize constant.
authorRichard M. Stallman <rms@gnu.org>
Tue, 9 Sep 1997 02:56:04 +0000 (02:56 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 9 Sep 1997 02:56:04 +0000 (02:56 +0000)
(dabbrev-case-replace): Likewise.

lisp/dabbrev.el

index 90f67a9f23ea1f268d82806a4af76211db602807..ab134ce3aeea620978084921966515ae6a920943 100644 (file)
@@ -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