Function: vc-rcs-branch-p

vc-rcs-branch-p is a byte-compiled function defined in vc-rcs.el.gz.

Signature

(vc-rcs-branch-p REV)

Documentation

Return t if REV is a branch revision.

Aliases

vc-branch-p (obsolete since 28.1)

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-rcs.el.gz
;; functions that operate on RCS revision numbers.
(defun vc-rcs-branch-p (rev)
  "Return t if REV is a branch revision."
  (not (eq nil (string-match "\\`[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*\\'" rev))))