(vc-path): Use /usr/sccs only if it is a dir.
This commit is contained in:
parent
e343798900
commit
b75f9a7686
1 changed files with 3 additions and 2 deletions
|
@ -95,8 +95,9 @@ value of this flag.")
|
|||
(defvar vc-checkout-switches nil
|
||||
"*Extra switches passed to the checkout program by \\[vc-checkout].")
|
||||
(defvar vc-path
|
||||
(if (file-exists-p "/usr/sccs")
|
||||
'("/usr/sccs") nil)
|
||||
(if (file-directory-p "/usr/sccs")
|
||||
'("/usr/sccs")
|
||||
nil)
|
||||
"*List of extra directories to search for version control commands.")
|
||||
(defvar vc-directory-exclusion-list '("SCCS" "RCS")
|
||||
"*Directory names ignored by functions that recursively walk file trees.")
|
||||
|
|
Loading…
Add table
Reference in a new issue