Function: newsticker-item-not-immortal-p
newsticker-item-not-immortal-p is a byte-compiled function defined in
newst-plainview.el.gz.
Signature
(newsticker-item-not-immortal-p)
Documentation
Return t if there is an item at point which is not immortal, nil otherwise.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker-item-not-immortal-p ()
"Return t if there is an item at point which is not immortal, 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 old obsolete)) t)))))