From: Kim F. Storm Date: Wed, 19 Jul 2006 11:19:27 +0000 (+0000) Subject: (grep-find-ignored-directories): Add .svn and _darcs to list. X-Git-Tag: emacs-pretest-22.0.90~1329 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ee87a9f988413752768d028090f32c2ae93774a8;p=emacs.git (grep-find-ignored-directories): Add .svn and _darcs to list. --- diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 37d4952058b..e7d85910a63 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el @@ -155,7 +155,7 @@ The following place holders should be present in the string: :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)