Variable: newsticker-new-item-functions
newsticker-new-item-functions is a customizable variable defined in
newst-backend.el.gz.
Value
nil
Documentation
List of functions run after a new headline has been retrieved.
Each function is called with the following two arguments:
FEEDNAME the name of the corresponding news feed,
ITEM the decoded headline.
See newsticker-new-item-functions-sample,
newsticker-download-images, and
newsticker-download-enclosures for sample functions.
Please note that these functions are called only once for a headline after it has been retrieved for the first time.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
(defcustom newsticker-new-item-functions
nil
"List of functions run after a new headline has been retrieved.
Each function is called with the following two arguments:
FEEDNAME the name of the corresponding news feed,
ITEM the decoded headline.
See `newsticker-new-item-functions-sample',
`newsticker-download-images', and
`newsticker-download-enclosures' for sample functions.
Please note that these functions are called only once for a
headline after it has been retrieved for the first time."
:type 'hook
:options '(newsticker-download-images
newsticker-download-enclosures)
:group 'newsticker-hooks)