Function: gnus-start-date-timer

gnus-start-date-timer is an autoloaded, interactive and byte-compiled function defined in gnus-art.el.gz.

Signature

(gnus-start-date-timer &optional N)

Documentation

Start a timer to update the Date headers in the article buffers.

The numerical prefix says how frequently (in seconds) the function is to run.

Probably introduced at or before Emacs version 20.4.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-start-date-timer (&optional n)
  "Start a timer to update the Date headers in the article buffers.
The numerical prefix says how frequently (in seconds) the function
is to run."
  (interactive "p" gnus-article-mode)
  (unless n
    (setq n 1))
  (gnus-stop-date-timer)
  (setq article-lapsed-timer
	(run-at-time 1 n #'article-update-date-lapsed)))