]> git.eshelyaron.com Git - emacs.git/commitdiff
Default the grep commands to skip directories
authorAlex Gramiak <agrambot@gmail.com>
Wed, 7 Oct 2020 03:41:23 +0000 (05:41 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 7 Oct 2020 03:41:23 +0000 (05:41 +0200)
* lisp/progmodes/grep.el (grep-compute-defaults): Skip directories
(bug#23590).

lisp/progmodes/grep.el

index 279eb4d54b16d5f1d75167aad95c0054265cd61f..6bc187028fb06ffdac8739fee9a54648ebc3f200 100644 (file)
@@ -703,10 +703,15 @@ The value depends on `grep-command', `grep-template',
       (let ((grep-options
             (concat (if grep-use-null-device "-n" "-nH")
                      (if grep-use-null-filename-separator " --null")
-                    (if (grep-probe grep-program
-                                    `(nil nil nil "-e" "foo" ,null-device)
-                                    nil 1)
-                        " -e"))))
+                     (when (grep-probe grep-program
+                                       `(nil nil nil "--directories=skip" "foo"
+                                             ,null-device)
+                                       nil 1)
+                       " --directories=skip")
+                     (when (grep-probe grep-program
+                                       `(nil nil nil "-e" "foo" ,null-device)
+                                       nil 1)
+                       " -e"))))
        (unless grep-command
          (setq grep-command
                (format "%s %s %s " grep-program