From: Dmitry Gutov Date: Tue, 16 Jun 2020 21:50:31 +0000 (+0300) Subject: Make project file name completion adhere to customization X-Git-Tag: emacs-28.0.90~7166 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6e777a66397659de5e0e15067b440fd7013a2796;p=emacs.git 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). --- diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index f3df44fa7ba..22e57b4fe6f 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)))