Function: newsticker-next-item-available-p
newsticker-next-item-available-p is a byte-compiled function defined
in newst-plainview.el.gz.
Signature
(newsticker-next-item-available-p)
Documentation
Return t if position is before last feed, nil otherwise.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker-next-item-available-p ()
"Return t if position is before last feed, nil otherwise."
(save-excursion
(catch 'result
(while (< (point) (point-max))
(unless (newsticker--buffer-goto '(item))
(throw 'result nil))
(unless (newsticker--lists-intersect-p
(get-text-property (point) 'invisible)
buffer-invisibility-spec)
(throw 'result t))))))