Function: vc-rcs-annotate-current-time
vc-rcs-annotate-current-time is a byte-compiled function defined in
vc-rcs.el.gz.
Signature
(vc-rcs-annotate-current-time)
Documentation
Return the current time, based at midnight of the current day, and encoded as fractional days.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-rcs.el.gz
(defun vc-rcs-annotate-current-time ()
"Return the current time, based at midnight of the current day, and
encoded as fractional days."
(vc-annotate-convert-time
(apply #'encode-time 0 0 0 (nthcdr 3 (decode-time)))))