Function: newsticker-item-not-old-p

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

Signature

(newsticker-item-not-old-p)

Documentation

Return t if there is an item at point which is not old, nil otherwise.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker-item-not-old-p ()
  "Return t if there is an item at point which is not old, nil otherwise."
    (when (get-text-property (point) 'feed)
      (save-excursion
        (newsticker--buffer-beginning-of-item)
        (let ((age (get-text-property (point) 'nt-age)))
          (and (memq  age '(new immortal obsolete)) t)))))