Function: gnus-summary-catchup-and-goto-prev-group

gnus-summary-catchup-and-goto-prev-group is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-catchup-and-goto-prev-group &optional ALL)

Documentation

Mark all articles in this group as read and select the previous group.

If given a prefix, mark all articles, unread as well as ticked, as read.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-catchup-and-goto-prev-group (&optional all)
  "Mark all articles in this group as read and select the previous group.
If given a prefix, mark all articles, unread as well as ticked, as
read."
  (interactive "P" gnus-summary-mode)
  (save-excursion
    (gnus-summary-catchup all))
  (gnus-summary-next-group nil nil t))