Function: gnus-summary-limit-include-dormant

gnus-summary-limit-include-dormant is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-limit-include-dormant)

Documentation

Display all the hidden articles that are marked as dormant.

Note that this command only works on a subset of the articles currently fetched for this group.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-limit-include-dormant ()
  "Display all the hidden articles that are marked as dormant.
Note that this command only works on a subset of the articles currently
fetched for this group."
  (interactive nil gnus-summary-mode)
  (unless gnus-newsgroup-dormant
    (error "There are no dormant articles in this group"))
  (prog1
      (gnus-summary-limit (append gnus-newsgroup-dormant gnus-newsgroup-limit))
    (gnus-summary-position-point)))