Function: newsticker-previous-item-available-p

newsticker-previous-item-available-p is a byte-compiled function defined in newst-plainview.el.gz.

Signature

(newsticker-previous-item-available-p)

Documentation

Return t if position is behind first item, nil otherwise.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker-previous-item-available-p ()
  "Return t if position is behind first item, nil otherwise."
  (save-excursion
    (catch 'result
      (while (> (point) (point-min))
        (unless (newsticker--buffer-goto '(item) nil t)
          (throw 'result nil))
        (unless (invisible-p (point))
          (throw 'result t))))))