branch: master
commit fd9a0fb4c91c8de9775fd5bf834f42b36348ce78
Author: Alex Branham <bran...@utexas.edu>
Commit: Alex Branham <bran...@utexas.edu>

    defcustom: prefer t instead of (meaningless) descriptive symbols
---
 company-dabbrev.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/company-dabbrev.el b/company-dabbrev.el
index c51d515..5d2f318 100644
--- a/company-dabbrev.el
+++ b/company-dabbrev.el
@@ -62,7 +62,7 @@ When it's `keep-prefix', the text before point will remain 
unchanged after
 candidate is inserted, even some of its characters have different case."
   :type '(choice
           (const :tag "Don't ignore case" nil)
-          (const :tag "Ignore case" ignore-case)
+          (const :tag "Ignore case" t)
           (const :tag "Keep case before point" keep-prefix)))
 
 (defcustom company-dabbrev-downcase 'case-replace
@@ -76,7 +76,7 @@ If you set this value to nil, you may also want to set
 `company-dabbrev-ignore-case' to any value other than `keep-prefix'."
   :type '(choice
           (const :tag "Keep as-is" nil)
-          (const :tag "Downcase" downcase)
+          (const :tag "Downcase" t)
           (const :tag "Use case-replace" case-replace)))
 
 (defcustom company-dabbrev-minimum-length 4

Reply via email to