Function: newsticker-browse-url
newsticker-browse-url is an interactive and byte-compiled function
defined in newst-plainview.el.gz.
Signature
(newsticker-browse-url)
Documentation
Call browse-url for the link of the item at point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker-browse-url ()
"Call `browse-url' for the link of the item at point."
(interactive)
(let ((url (get-text-property (point) 'nt-link)))
(when url
(browse-url url)
(if newsticker-automatically-mark-visited-items-as-old
(newsticker-mark-item-at-point-as-read t)))))