emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master c534a4a: Doc fix for Gnus "very wide" reply command


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master c534a4a: Doc fix for Gnus "very wide" reply commands
Date: Fri, 28 Jun 2019 10:20:25 -0400 (EDT)

branch: master
commit c534a4a3368cb396ccb53677f3153b526724d867
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    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 e6ad713..819936d 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]