Function: gnus-summary-pop-limit

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

Signature

(gnus-summary-pop-limit &optional TOTAL)

Documentation

Restore the previous limit.

If given a prefix, remove all limits.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-pop-limit (&optional total)
  "Restore the previous limit.
If given a prefix, remove all limits."
  (interactive "P" gnus-summary-mode)
  (when total
    (setq gnus-newsgroup-limits
	  (list (mapcar #'mail-header-number gnus-newsgroup-headers))))
  (unless gnus-newsgroup-limits
    (error "No limit to pop"))
  (prog1
      (gnus-summary-limit nil 'pop)
    (gnus-summary-position-point)))