Function: newsticker--buffer-hideshow
newsticker--buffer-hideshow is a byte-compiled function defined in
newst-plainview.el.gz.
Signature
(newsticker--buffer-hideshow MARK-AGE ONOFF)
Documentation
Hide or show items of type MARK-AGE.
If ONOFF is nil the item is hidden, otherwise it is shown.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker--buffer-hideshow (mark-age onoff)
"Hide or show items of type MARK-AGE.
If ONOFF is nil the item is hidden, otherwise it is shown."
(if onoff
(remove-from-invisibility-spec mark-age)
(add-to-invisibility-spec mark-age)))