branch: externals/consult
commit c87b0bf06de0c3cb60bc8d257c770cb981ddcd19
Author: Daniel Mendler <m...@daniel-mendler.de>
Commit: Daniel Mendler <m...@daniel-mendler.de>

    consult-find-args: Improve compatibility with NetBSD find
    
    -iwholename is equivalent to -ipath, but -path is more widely supported.
---
 consult.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/consult.el b/consult.el
index 936bb3e0dc..8ff21d7fa4 100644
--- a/consult.el
+++ b/consult.el
@@ -279,7 +279,7 @@ Can be either a string, or a list of strings or 
expressions."
   :type '(choice string (repeat (choice string sexp))))
 
 (defcustom consult-find-args
-  "find . -not ( -iwholename */.[a-z]* -prune )"
+  "find . -not ( -path */.[A-Za-z]* -prune )"
   "Command line arguments for find, see `consult-find'.
 The dynamically computed arguments are appended.
 Can be either a string, or a list of strings or expressions."

Reply via email to