Variable: newsticker-ticker-period

newsticker-ticker-period is a customizable variable defined in newst-ticker.el.gz.

Value

0

Documentation

Time interval for displaying news items in the echo area (seconds).

If equal or less than 0 messages are shown continuously. In order not to miss new items, a value of equal or less than the shortest feed retrieval interval (or the global `newsticker-retrieval-interval`) is recommended.

This variable was added, or its default value changed, in Emacs 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-ticker.el.gz
(defcustom newsticker-ticker-period
  0
  "Time interval for displaying news items in the echo area (seconds).
If equal or less than 0 messages are shown continuously.  In order not
to miss new items, a value of equal or less than the shortest feed
retrieval interval (or the global `newsticker-retrieval-interval`) is
recommended."
  :type 'number
  :set #'newsticker--set-customvar-ticker
  :version "30.1"
  :group 'newsticker-ticker)