emacs-diffs
[Top][All Lists]
Advanced

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

master 6e777a6 1/3: Make project file name completion adhere to customiz


From: Dmitry Gutov
Subject: master 6e777a6 1/3: Make project file name completion adhere to customization
Date: Tue, 16 Jun 2020 18:33:09 -0400 (EDT)

branch: master
commit 6e777a66397659de5e0e15067b440fd7013a2796
Author: Dmitry Gutov <dgutov@yandex.ru>
Commit: Dmitry Gutov <dgutov@yandex.ru>

    Make project file name completion adhere to customization
    
    * lisp/progmodes/project.el (project-find-file-in):
    Bind completion-ignore-case to the value of
    read-file-name-completion-ignore-case (bug#41902).
---
 lisp/progmodes/project.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index f3df44f..22e57b4 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -644,6 +644,7 @@ PREDICATE, HIST, and DEFAULT have the same meaning as in
 (defun project-find-file-in (filename dirs project)
   "Complete FILENAME in DIRS in PROJECT and visit the result."
   (let* ((all-files (project-files project dirs))
+         (completion-ignore-case read-file-name-completion-ignore-case)
          (file (funcall project-read-file-name-function
                        "Find file" all-files nil nil
                        filename)))



reply via email to

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