Variable: article-time-units

article-time-units is a variable defined in gnus-art.el.gz.

Value

((year . 31557600.0) (week . 604800) (day . 86400) (hour . 3600)
 (minute . 60) (second . 1))

Documentation

Mapping from time units to seconds.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defconst article-time-units
  `((year . ,(* 365.25 24 60 60))
    (week . ,(* 7 24 60 60))
    (day . ,(* 24 60 60))
    (hour . ,(* 60 60))
    (minute . 60)
    (second . 1))
  "Mapping from time units to seconds.")