Function: newsticker-set-auto-narrow-to-feed
newsticker-set-auto-narrow-to-feed is an interactive and byte-compiled
function defined in newst-plainview.el.gz.
Signature
(newsticker-set-auto-narrow-to-feed VALUE)
Documentation
Turn narrowing to current news feed 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-feed (value)
"Turn narrowing to current news feed on or off.
If VALUE is nil, auto-narrowing is turned off, otherwise it is turned on."
(interactive)
(setq newsticker--auto-narrow-to-item nil)
(setq newsticker--auto-narrow-to-feed value)
(widen)
(newsticker--buffer-make-item-completely-visible)
(run-hooks 'newsticker-narrow-hook))