Function: newsticker-running-p
newsticker-running-p is an autoloaded and byte-compiled function
defined in newst-backend.el.gz.
Signature
(newsticker-running-p)
Documentation
Check whether newsticker is running.
Return t if newsticker is running, nil otherwise. Newsticker is considered to be running if the newsticker timer list is not empty.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
;;;###autoload
(defun newsticker-running-p ()
"Check whether newsticker is running.
Return t if newsticker is running, nil otherwise. Newsticker is
considered to be running if the newsticker timer list is not empty."
(> (length newsticker--retrieval-timer-list) 0))