Function: vc-rcs-trunk-p

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

Signature

(vc-rcs-trunk-p REV)

Documentation

Return t if REV is a revision on the trunk.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-rcs.el.gz
;;;
;;; Miscellaneous
;;;

(defun vc-rcs-trunk-p (rev)
  "Return t if REV is a revision on the trunk."
  (not (eq nil (string-match "\\`[0-9]+\\.[0-9]+\\'" rev))))