1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

* 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.
This commit is contained in:
Eric S. Raymond 2008-01-02 23:47:35 +00:00
parent aab2236f2d
commit 1f0bee0a2d
3 changed files with 11 additions and 10 deletions

View File

@ -1,3 +1,11 @@
2008-01-02 Eric S. Raymond <esr@snark.thyrsus.com>
* 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.
2008-01-02 Karl Fogel <kfogel@red-bean.com>
Change a return type, for greater extensibility. See

View File

@ -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)

View File

@ -76,9 +76,10 @@ An empty list disables VC altogether."
:version "23.1"
:group 'vc)
;; Note: we don't actually have a darcs back end yet.
(defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS" "MCVS"
".svn" ".git" ".hg" ".bzr"
"_MTN" "{arch}")
"_MTN" "_darcs" "{arch}")
"List of directory names to be ignored when walking directory trees."
:type '(repeat string)
:group 'vc)