diff options
Diffstat (limited to 'lisp/vc-hooks.el')
-rw-r--r-- | lisp/vc-hooks.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 437b2267d7f..3657878232e 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -76,6 +76,13 @@ An empty list disables VC altogether." :version "23.1" :group 'vc) +(defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS" "MCVS" + ".svn" ".git" ".hg" ".bzr" + "_MTN" "{arch}") + "List of directory names to be ignored when walking directory trees." + :type '(repeat string) + :group 'vc) + (defcustom vc-path (if (file-directory-p "/usr/sccs") '("/usr/sccs") |