comparison lisp/progmodes/grep.el @ 72024:ee140bf82264

(grep-find-ignored-directories): Add .svn and _darcs to list.
author Kim F. Storm <storm@cua.dk>
date Wed, 19 Jul 2006 11:19:27 +0000
parents a4944423be59
children bca9d3121eef
comparison
equal deleted inserted replaced
72023:a4c689f07211 72024:ee140bf82264
153 ) 153 )
154 "*Alist of aliases for the FILES argument to `lgrep' and `rgrep'." 154 "*Alist of aliases for the FILES argument to `lgrep' and `rgrep'."
155 :type 'alist 155 :type 'alist
156 :group 'grep) 156 :group 'grep)
157 157
158 (defcustom grep-find-ignored-directories '("CVS" ".hg" "{arch}") 158 (defcustom grep-find-ignored-directories '("CVS" ".svn" "{arch}" ".hg" "_darcs")
159 "*List of names of sub-directories which `rgrep' shall not recurse into." 159 "*List of names of sub-directories which `rgrep' shall not recurse into."
160 :type '(repeat string) 160 :type '(repeat string)
161 :group 'grep) 161 :group 'grep)
162 162
163 (defcustom grep-error-screen-columns nil 163 (defcustom grep-error-screen-columns nil