Function: gnus-uu-invert-processable
gnus-uu-invert-processable is an autoloaded, interactive and
byte-compiled function defined in gnus-uu.el.gz.
Signature
(gnus-uu-invert-processable)
Documentation
Invert the list of process-marked articles.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-uu.el.gz
(defun gnus-uu-invert-processable ()
"Invert the list of process-marked articles."
(interactive nil gnus-article-mode gnus-summary-mode)
(let ((data gnus-newsgroup-data)
number)
(save-excursion
(while data
(if (memq (setq number (gnus-data-number (pop data)))
gnus-newsgroup-processable)
(gnus-summary-remove-process-mark number)
(gnus-summary-set-process-mark number)))))
(gnus-summary-position-point))