Function: vc-annotate-convert-time
vc-annotate-convert-time is a byte-compiled function defined in
vc-annotate.el.gz.
Signature
(vc-annotate-convert-time &optional TIME)
Documentation
Convert optional value TIME to a floating-point number of days.
TIME defaults to the current time.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-annotate.el.gz
tmp-cons)) ; Return the appropriate value
(defun vc-annotate-convert-time (&optional time)
"Convert optional value TIME to a floating-point number of days.
TIME defaults to the current time."
(/ (float-time time) 86400))