aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/grep.el
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2006-07-19 11:19:27 +0000
committerKim F. Storm <[email protected]>2006-07-19 11:19:27 +0000
commitee87a9f988413752768d028090f32c2ae93774a8 (patch)
treedfa0aea74f7a43ec23f7fbaef2fa4436695f485d /lisp/progmodes/grep.el
parent9e2899464bdf693c5e1475800ddcb1966544f2cf (diff)
(grep-find-ignored-directories): Add .svn and _darcs to list.
Diffstat (limited to 'lisp/progmodes/grep.el')
-rw-r--r--lisp/progmodes/grep.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el
index 37d4952058..e7d85910a6 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)