Function: gnus-group-timestamp-delta
gnus-group-timestamp-delta is a byte-compiled function defined in
gnus-group.el.gz.
Signature
(gnus-group-timestamp-delta GROUP)
Documentation
Return the offset in seconds from the timestamp for GROUP to the current time.
Return value is a floating point number.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-timestamp-delta (group)
"Return the offset in seconds from the timestamp for GROUP to the current time.
Return value is a floating point number."
;; FIXME: This should return a Lisp integer, not a Lisp float,
;; since it is always an integer.
(let* ((time (or (gnus-group-timestamp group) 0))
(delta (time-since time)))
(float-time delta)))