branch: master
commit a664943bf9413403ea6f6f59d594238b2fd06d3a
Author: Ahmed Khanzada <lenz...@gmail.com>
Commit: Oleh Krehel <ohwoeo...@gmail.com>

    BSDs should default to locate not using regular expressions
    
    Fixes #1950
---
 counsel.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/counsel.el b/counsel.el
index 6afb0d4..7bad3f7 100644
--- a/counsel.el
+++ b/counsel.el
@@ -2222,6 +2222,8 @@ can use `C-x r j i' to open that file."
 ;;** `counsel-locate'
 (defcustom counsel-locate-cmd (cond ((eq system-type 'darwin)
                                      'counsel-locate-cmd-noregex)
+                                    ((eq system-type 'berkeley-unix)
+                                     'counsel-locate-cmd-noregex)
                                     ((and (eq system-type 'windows-nt)
                                           (executable-find "es.exe"))
                                      'counsel-locate-cmd-es)

Reply via email to