Function: vc-rcs-annotate-time

vc-rcs-annotate-time is a byte-compiled function defined in vc-rcs.el.gz.

Signature

(vc-rcs-annotate-time)

Documentation

Return the time of the next annotation (as fraction of days) systime, or nil if there is none. Also, reposition point.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-rcs.el.gz
(defun vc-rcs-annotate-time ()
  "Return the time of the next annotation (as fraction of days)
systime, or nil if there is none.  Also, reposition point."
  (unless (eobp)
    (prog1 (vc-annotate-convert-time
            (aref (get-text-property (point) :vc-rcs-r/d/a) 1))
      (goto-char (next-single-property-change (point) :vc-annotate-prefix)))))