Function: gnus-summary-yank-process-mark
gnus-summary-yank-process-mark is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-yank-process-mark)
Documentation
Pop the last process mark state off the stack and restore it.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-yank-process-mark ()
"Pop the last process mark state off the stack and restore it."
(interactive nil gnus-summary-mode)
(unless gnus-newsgroup-process-stack
(error "Empty mark stack"))
(gnus-summary-process-mark-set (pop gnus-newsgroup-process-stack)))