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

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

[elpa] 05/28: company--show-inline-p: never ignore case


From: Dmitry Gutov
Subject: [elpa] 05/28: company--show-inline-p: never ignore case
Date: Wed, 27 Aug 2014 01:26:21 +0000

dgutov pushed a commit to branch master
in repository elpa.

commit 1b705a0f32ab83931ecaecddb6c9e4ba4d47c643
Author: Dmitry Gutov <address@hidden>
Date:   Mon Aug 4 01:25:57 2014 +0400

    company--show-inline-p: never ignore case
    
    Fixes #162
---
 company.el |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/company.el b/company.el
index ac49892..732226a 100644
--- a/company.el
+++ b/company.el
@@ -2550,8 +2550,7 @@ Returns a negative number if the tooltip should be 
displayed above point."
 (defun company--show-inline-p ()
   (and (not (cdr company-candidates))
        company-common
-       (string-prefix-p company-prefix company-common
-                        (company-call-backend 'ignore-case))))
+       (string-prefix-p company-prefix company-common)))
 
 ;;; echo 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 



reply via email to

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