comparison lisp/progmodes/grep.el @ 87523:fe5c2c0f8dcf

* progmodes/grep.el (grep-find-ignored-directories): Initialize from the value of vc-directory-exclusion-list. * vc-hooks (vc-directory-exclusion-list): Include "_darcs", even though we don't have a back end for darcs yet.
author Eric S. Raymond <esr@snark.thyrsus.com>
date Wed, 02 Jan 2008 23:47:35 +0000
parents cdd30283527d
children 62e8690b9f1a
comparison
equal deleted inserted replaced
87522:818b4291c99a 87523:fe5c2c0f8dcf
156 "*Alist of aliases for the FILES argument to `lgrep' and `rgrep'." 156 "*Alist of aliases for the FILES argument to `lgrep' and `rgrep'."
157 :type 'alist 157 :type 'alist
158 :group 'grep) 158 :group 'grep)
159 159
160 (defcustom grep-find-ignored-directories 160 (defcustom grep-find-ignored-directories
161 '(".bzr" 161 vc-directory-exclusion-list
162 ".git"
163 ".hg"
164 ".svn"
165 "CVS"
166 "RCS"
167 "_MTN"
168 "_darcs"
169 "{arch}")
170 "*List of names of sub-directories which `rgrep' shall not recurse into." 162 "*List of names of sub-directories which `rgrep' shall not recurse into."
171 :type '(repeat string) 163 :type '(repeat string)
172 :group 'grep) 164 :group 'grep)
173 165
174 (defcustom grep-error-screen-columns nil 166 (defcustom grep-error-screen-columns nil