diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 2008-01-02 23:47:35 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 2008-01-02 23:47:35 +0000 |
commit | 1f0bee0a2d7c6254e87d169ee8c1bead6674247e (patch) | |
tree | a295a730c1439f26ae849c05e3c6bea6b402b91a /lisp/progmodes/grep.el | |
parent | aab2236f2de3219864725b31c60d07473a844c85 (diff) | |
download | emacs-1f0bee0a2d7c6254e87d169ee8c1bead6674247e.tar.gz |
* 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.
Diffstat (limited to 'lisp/progmodes/grep.el')
-rw-r--r-- | lisp/progmodes/grep.el | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 062fce4c346..101e8f12e3f 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el @@ -158,15 +158,7 @@ The following place holders should be present in the string: :group 'grep) (defcustom grep-find-ignored-directories - '(".bzr" - ".git" - ".hg" - ".svn" - "CVS" - "RCS" - "_MTN" - "_darcs" - "{arch}") + vc-directory-exclusion-list "*List of names of sub-directories which `rgrep' shall not recurse into." :type '(repeat string) :group 'grep) |