Function: gnus-summary-very-wide-reply
gnus-summary-very-wide-reply is an interactive and byte-compiled
function defined in gnus-msg.el.gz.
Signature
(gnus-summary-very-wide-reply &optional YANK)
Documentation
Start composing a very wide reply mail to a set of messages.
Uses the process/prefix convention.
The reply will include all From/Cc headers from the original messages as the To/Cc headers.
If prefix argument YANK is non-nil, the original article will be yanked automatically.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-msg.el.gz
(defun gnus-summary-very-wide-reply (&optional yank)
"Start composing a very wide reply mail to a set of messages.
Uses the process/prefix convention.
The reply will include all From/Cc headers from the original
messages as the To/Cc headers.
If prefix argument YANK is non-nil, the original article will
be yanked automatically."
(interactive (list (and current-prefix-arg
(gnus-summary-work-articles 1)))
gnus-summary-mode)
(gnus-summary-reply yank t (gnus-summary-work-articles current-prefix-arg)))