Function: newsticker-get-news-at-point
newsticker-get-news-at-point is an interactive and byte-compiled
function defined in newst-plainview.el.gz.
Signature
(newsticker-get-news-at-point)
Documentation
Launch retrieval of news for the feed point is in.
This does NOT start the retrieval timers.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker-get-news-at-point ()
"Launch retrieval of news for the feed point is in.
This does NOT start the retrieval timers."
(interactive)
;; launch retrieval of news
(let ((feed (get-text-property (point) 'feed)))
(when feed
(newsticker--debug-msg "Getting news for %s" (symbol-name feed))
(newsticker-get-news (symbol-name feed)))))