dgutov pushed a commit to branch master
in repository elpa.
commit 1b705a0f32ab83931ecaecddb6c9e4ba4d47c643
Author: Dmitry Gutov <[email protected]>
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;