Variable: newsticker-ticker-interval

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

Value

0.3

Documentation

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

If equal or less than 0 no messages are shown in the echo area. For smooth display (see newsticker-scroll-smoothly) a value of 0.3 seems reasonable. For non-smooth display a value of 10 is a good starting point.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-ticker.el.gz
(defcustom newsticker-ticker-interval
  0.3
  "Time interval for scrolling news items in the echo area (seconds).
If equal or less than 0 no messages are shown in the echo area.  For
smooth display (see `newsticker-scroll-smoothly') a value of 0.3 seems
reasonable.  For non-smooth display a value of 10 is a good starting
point."
  :type 'number
  :set #'newsticker--set-customvar-ticker
  :group 'newsticker-ticker)