Function: cvs-get-cvsroot
cvs-get-cvsroot is a byte-compiled function defined in pcvs.el.gz.
Signature
(cvs-get-cvsroot)
Documentation
Get the CVSROOT for DIR.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun cvs-get-cvsroot ()
"Get the CVSROOT for DIR."
(let ((cvs-cvsroot-file (expand-file-name "Root" "CVS")))
(or (cvs-file-to-string cvs-cvsroot-file t)
cvs-cvsroot
(getenv "CVSROOT")
"?????")))