emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master fd9a0fb 53/78: defcustom: prefer t instead of (meaningless


From: Dmitry Gutov
Subject: [elpa] master fd9a0fb 53/78: defcustom: prefer t instead of (meaningless) descriptive symbols
Date: Sun, 18 Feb 2018 07:40:25 -0500 (EST)

branch: master
commit fd9a0fb4c91c8de9775fd5bf834f42b36348ce78
Author: Alex Branham <address@hidden>
Commit: Alex Branham <address@hidden>

    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

[Prev in Thread] Current Thread [Next in Thread]