Function: newsticker--sentinel
newsticker--sentinel is a byte-compiled function defined in
newst-backend.el.gz.
Signature
(newsticker--sentinel PROCESS EVENT)
Documentation
Sentinel for extracting news titles from an RDF buffer.
Argument PROCESS is the process which has just changed its state. Argument EVENT tells what has happened to the process.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
;; ======================================================================
;; Parsing
;; ======================================================================
(defun newsticker--sentinel (process event)
"Sentinel for extracting news titles from an RDF buffer.
Argument PROCESS is the process which has just changed its state.
Argument EVENT tells what has happened to the process."
(let ((p-status (process-status process))
(exit-status (process-exit-status process))
(feed-name (process-get process 'nt-feed-name))
(command (process-command process))
(buffer (process-buffer process)))
(newsticker--sentinel-work event
(and (eq p-status 'exit)
(= exit-status 0))
feed-name command buffer)))