Function: newsticker-new-item-functions-sample
newsticker-new-item-functions-sample is a byte-compiled function
defined in newst-backend.el.gz.
Signature
(newsticker-new-item-functions-sample FEEDNAME ITEM)
Documentation
Demonstrate the use of the newsticker-new-item-functions hook.
This function just prints out the values of the FEEDNAME and title of the ITEM.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
;; ======================================================================
;;; Hook samples
;; ======================================================================
(defun newsticker-new-item-functions-sample (feedname item)
"Demonstrate the use of the `newsticker-new-item-functions' hook.
This function just prints out the values of the FEEDNAME and title of the ITEM."
(message (concat "newsticker-new-item-functions-sample: feed=`%s', "
"title=`%s'")
feedname (newsticker--title item)))