Function: newsticker--update-process-ids
newsticker--update-process-ids is a byte-compiled function defined in
newst-backend.el.gz.
Signature
(newsticker--update-process-ids)
Documentation
Update list of ids of active newsticker processes.
Checks list of active processes against list of newsticker processes.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
(defun newsticker--update-process-ids ()
"Update list of ids of active newsticker processes.
Checks list of active processes against list of newsticker processes."
(let ((new-list nil))
(dolist (proc (process-list))
(let ((id (process-id proc)))
(if (memq id newsticker--process-ids)
(setq new-list (cons id new-list)))))
(setq newsticker--process-ids new-list))
(force-mode-line-update))