Function: newsticker-start-ticker
newsticker-start-ticker is an autoloaded, interactive and
byte-compiled function defined in newst-ticker.el.gz.
Signature
(newsticker-start-ticker)
Documentation
Start newsticker's ticker (but not the news retrieval).
Start display timer for the actual ticker if wanted and not running already.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-ticker.el.gz
;;;###autoload
(defun newsticker-start-ticker ()
"Start newsticker's ticker (but not the news retrieval).
Start display timer for the actual ticker if wanted and not
running already."
(interactive)
(if (and (> newsticker-ticker-interval 0)
(not newsticker--ticker-timer))
(setq newsticker--ticker-timer
(run-at-time newsticker-ticker-interval
newsticker-ticker-interval
#'newsticker--display-tick))))