Variable: vc-svn-admin-directory
vc-svn-admin-directory is a variable defined in vc-svn.el.gz.
Value
".svn"
Documentation
The name of the ".svn" subdirectory or its equivalent.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-svn.el.gz
;; We want to autoload it for use by the autoloaded version of
;; vc-svn-registered, but we want the value to be compiled at startup, not
;; at dump time.
;; ;;;###autoload
(defconst vc-svn-admin-directory
(cond ((and (memq system-type '(cygwin windows-nt ms-dos))
(getenv "SVN_ASP_DOT_NET_HACK"))
"_svn")
(t ".svn"))
"The name of the \".svn\" subdirectory or its equivalent.")