From c534a4a3368cb396ccb53677f3153b526724d867 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Fri, 28 Jun 2019 16:20:05 +0200 Subject: [PATCH] Doc fix for Gnus "very wide" reply commands * lisp/gnus/gnus-msg.el (gnus-summary-very-wide-reply-with-original) (gnus-summary-very-wide-reply): Clarify what a "very wide reply" is. --- lisp/gnus/gnus-msg.el | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index e6ad7135c8f..819936d935a 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el @@ -1246,23 +1246,35 @@ automatically." (defun gnus-summary-wide-reply-with-original (n) "Start composing a wide reply mail to the current message. -The original article will be yanked. +The original article(s) will be yanked. Uses the process/prefix convention." (interactive "P") (gnus-summary-reply-with-original n t)) (defun gnus-summary-very-wide-reply (&optional yank) - "Start composing a very wide reply mail to the current message. -If prefix argument YANK is non-nil, the original article is yanked -automatically." + "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(s) will +be yanked automatically." (interactive (list (and current-prefix-arg (gnus-summary-work-articles 1)))) (gnus-summary-reply yank t (gnus-summary-work-articles yank))) (defun gnus-summary-very-wide-reply-with-original (n) - "Start composing a very wide reply mail to the current message. -The original article will be yanked." + "Start composing a very wide reply mail 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. + +The original article(s) will be yanked." (interactive "P") (gnus-summary-reply (gnus-summary-work-articles n) t (gnus-summary-work-articles n))) -- 2.39.2