Function: newsticker-mark-item-at-point-as-read

newsticker-mark-item-at-point-as-read is an interactive and byte-compiled function defined in newst-plainview.el.gz.

Signature

(newsticker-mark-item-at-point-as-read &optional RESPECT-IMMORTALITY)

Documentation

Mark item at point as read and move to next item.

If optional argument RESPECT-IMMORTALITY is not nil immortal items do not get changed.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker-mark-item-at-point-as-read (&optional respect-immortality)
  "Mark item at point as read and move to next item.
If optional argument RESPECT-IMMORTALITY is not nil immortal items do
not get changed."
  (interactive)
  (when (or newsticker--buffer-uptodate-p
            (y-or-n-p
             "Buffer is not up to date -- really mark this item as read? "))
    (newsticker--do-mark-item-at-point-as-read respect-immortality)
    ;; move forward
    (newsticker-next-item t)))