Function: newsticker-mark-all-items-as-read

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

Signature

(newsticker-mark-all-items-as-read)

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-as-read ()
  "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--cache-replace-age newsticker--cache 'any 'new 'old)
    (newsticker--buffer-set-uptodate nil)
    (newsticker--ticker-text-setup)
    (newsticker--cache-save)
    (newsticker-buffer-update)))