comparison lisp/vc-hooks.el @ 77591:ec47afd2d1db

(vc-ignore-dir-regexp): Add /.../ for the DFS filesystem.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sat, 28 Apr 2007 14:08:58 +0000
parents e3694f1cb928
children a2d726c7e2d1 70bf32a0f523
comparison
equal deleted inserted replaced
77590:164a7ecf5f7b 77591:ec47afd2d1db
50 BACKEND, use `vc-handled-backends'.") 50 BACKEND, use `vc-handled-backends'.")
51 51
52 (defvar vc-header-alist ()) 52 (defvar vc-header-alist ())
53 (make-obsolete-variable 'vc-header-alist 'vc-BACKEND-header) 53 (make-obsolete-variable 'vc-header-alist 'vc-BACKEND-header)
54 54
55 (defcustom vc-ignore-dir-regexp "\\`\\([\\/][\\/]\\|/net/\\|/afs/\\)\\'" 55 (defcustom vc-ignore-dir-regexp
56 ;; Stop SMB, automounter, AFS, and DFS host lookups.
57 "\\`\\(?:[\\/][\\/]\\|/\\(?:net\\|afs\\|\\.\\\.\\.\\)/\\)\\'"
56 "Regexp matching directory names that are not under VC's control. 58 "Regexp matching directory names that are not under VC's control.
57 The default regexp prevents fruitless and time-consuming attempts 59 The default regexp prevents fruitless and time-consuming attempts
58 to determine the VC status in directories in which filenames are 60 to determine the VC status in directories in which filenames are
59 interpreted as hostnames." 61 interpreted as hostnames."
60 :type 'regexp 62 :type 'regexp