Function: newsticker-show-news
newsticker-show-news is an autoloaded, interactive and byte-compiled
function defined in newst-reader.el.gz.
Signature
(newsticker-show-news)
Documentation
Start reading news. You may want to bind this to a key.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-reader.el.gz
;; the functions we need for retrieval and display
;;;###autoload
(defun newsticker-show-news ()
"Start reading news. You may want to bind this to a key."
(interactive)
(newsticker-start t) ;; will start only if not running
;; Load the html rendering packages
(if newsticker-html-renderer
(cond ((eq newsticker-html-renderer 'w3m-region)
(require 'w3m))
((eq newsticker-html-renderer 'newsticker-htmlr-render)
(require 'htmlr))))
(funcall newsticker-frontend))