Function: vc-rcs-working-revision
vc-rcs-working-revision is a byte-compiled function defined in
vc-rcs.el.gz.
Signature
(vc-rcs-working-revision FILE)
Documentation
RCS-specific version of vc-working-revision.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-rcs.el.gz
(defun vc-rcs-working-revision (file)
"RCS-specific version of `vc-working-revision'."
(or (and vc-consult-headers
(vc-rcs-consult-headers file)
(vc-file-getprop file 'vc-working-revision))
(progn
(vc-rcs-fetch-master-state file)
(vc-file-getprop file 'vc-working-revision))))