Function: newsticker-mark-all-items-at-point-as-read-and-redraw

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

Signature

(newsticker-mark-all-items-at-point-as-read-and-redraw)

Documentation

Mark all items as read and clear ticker contents.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defun newsticker-mark-all-items-at-point-as-read-and-redraw ()
  "Mark all items as read and clear ticker contents."
  (interactive)
  (when (or newsticker--buffer-uptodate-p
            (y-or-n-p
             "Buffer is not up to date -- really mark items as read? "))
    (newsticker-mark-all-items-of-feed-as-read
     (get-text-property (point) 'feed))))