Function: newsticker-set-auto-narrow-to-item
newsticker-set-auto-narrow-to-item is an interactive and byte-compiled
function defined in newst-plainview.el.gz.
Signature
(newsticker-set-auto-narrow-to-item VALUE)
Documentation
Turn narrowing to current news item on or off.
If VALUE is nil, auto-narrowing is turned off, otherwise it is turned on.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker-set-auto-narrow-to-item (value)
"Turn narrowing to current news item on or off.
If VALUE is nil, auto-narrowing is turned off, otherwise it is turned on."
(interactive)
(setq newsticker--auto-narrow-to-feed nil)
(setq newsticker--auto-narrow-to-item value)
(widen)
(newsticker--buffer-make-item-completely-visible)
(run-hooks 'newsticker-narrow-hook))