Function: vc-cvs-annotate-current-time
vc-cvs-annotate-current-time is a byte-compiled function defined in
vc-cvs.el.gz.
Signature
(vc-cvs-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-cvs.el.gz
(defun vc-cvs-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)))))