# HG changeset patch # User Kim F. Storm # Date 1153307967 0 # Node ID ee140bf82264828b656335353a3b60504a112974 # Parent a4c689f07211b58f80c9549a6459a6cdec46f0c2 (grep-find-ignored-directories): Add .svn and _darcs to list. diff -r a4c689f07211 -r ee140bf82264 lisp/progmodes/grep.el --- a/lisp/progmodes/grep.el Wed Jul 19 11:19:04 2006 +0000 +++ b/lisp/progmodes/grep.el Wed Jul 19 11:19:27 2006 +0000 @@ -155,7 +155,7 @@ :type 'alist :group 'grep) -(defcustom grep-find-ignored-directories '("CVS" ".hg" "{arch}") +(defcustom grep-find-ignored-directories '("CVS" ".svn" "{arch}" ".hg" "_darcs") "*List of names of sub-directories which `rgrep' shall not recurse into." :type '(repeat string) :group 'grep)