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

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

[elpa] master 5d3e689 03/31: Update the remaining callers of company-cal


From: Dmitry Gutov
Subject: [elpa] master 5d3e689 03/31: Update the remaining callers of company-calculate-candidates
Date: Sun, 14 Apr 2019 22:06:15 -0400 (EDT)

branch: master
commit 5d3e6892e1be83c4fe41d45838362e39bff28a0d
Author: Dmitry Gutov <address@hidden>
Commit: Dmitry Gutov <address@hidden>

    Update the remaining callers of company-calculate-candidates
---
 company.el         | 3 ++-
 test/core-tests.el | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/company.el b/company.el
index 9a04201..973be1b 100644
--- a/company.el
+++ b/company.el
@@ -1812,7 +1812,8 @@ each one wraps a part of the input string."
           (and (not (string= re ""))
                company-search-filtering
                (lambda (candidate) (string-match re candidate))))
-         (cc (company-calculate-candidates company-prefix)))
+         (cc (company-calculate-candidates company-prefix
+                                           (company-call-backend 
'ignore-case))))
     (unless cc (user-error "No match"))
     (company-update-candidates cc)))
 
diff --git a/test/core-tests.el b/test/core-tests.el
index 2e0c77f..f3655a8 100644
--- a/test/core-tests.el
+++ b/test/core-tests.el
@@ -127,7 +127,7 @@
                    (annotation "3")
                    (candidates '("e"))
                    (post-completion "74"))))))
-    (let ((candidates (company-calculate-candidates nil)))
+    (let ((candidates (company-calculate-candidates nil nil)))
       (should (equal candidates '("a" "b" "c" "d" "e")))
       (should (equal t (company-call-backend 'ignore-case)))
       (should (equal "1" (company-call-backend 'annotation (nth 0 
candidates))))



reply via email to

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