From: Richard M. Stallman Date: Tue, 9 Sep 1997 02:56:04 +0000 (+0000) Subject: (dabbrev-case-fold-search): Remove extra quote in customize constant. X-Git-Tag: emacs-20.1~121 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fec1279bc2223c6cd3c7d6373227d7af4b6e832f;p=emacs.git (dabbrev-case-fold-search): Remove extra quote in customize constant. (dabbrev-case-replace): Likewise. --- 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