branch: externals/company
commit 87d159fe16259bb6a2356461008aeca416817c92
Author: Dmitry Gutov <dmi...@gutov.dev>
Commit: Dmitry Gutov <dmi...@gutov.dev>

    Fix non-nil company-dabbrev-code-ignore-case
---
 company-dabbrev-code.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/company-dabbrev-code.el b/company-dabbrev-code.el
index 49293a6779..4eddf38e0a 100644
--- a/company-dabbrev-code.el
+++ b/company-dabbrev-code.el
@@ -88,7 +88,8 @@ comments or strings."
                  (or company-dabbrev-code-everywhere
                      (not (company-in-string-or-comment)))
                  (or (company-grab-symbol) 'stop)))
-    (candidates (let ((case-fold-search company-dabbrev-code-ignore-case))
+    (candidates (let ((case-fold-search company-dabbrev-code-ignore-case)
+                      (completion-ignore-case 
company-dabbrev-code-ignore-case))
                   (all-completions
                    ""
                    (company-dabbrev--search

Reply via email to