diff options
| author | Lars Ingebrigtsen | 2019-06-28 16:20:05 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-06-28 16:20:05 +0200 |
| commit | c534a4a3368cb396ccb53677f3153b526724d867 (patch) | |
| tree | 4adf9c8fd46c64b1e80fc6a613b742fe8c55e307 | |
| parent | 86b28cbbf04280e11245f04f2964f0dc352949f0 (diff) | |
| download | emacs-c534a4a3368cb396ccb53677f3153b526724d867.tar.gz emacs-c534a4a3368cb396ccb53677f3153b526724d867.zip | |
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.
| -rw-r--r-- | lisp/gnus/gnus-msg.el | 24 |
1 files 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." | |||
| 1246 | 1246 | ||
| 1247 | (defun gnus-summary-wide-reply-with-original (n) | 1247 | (defun gnus-summary-wide-reply-with-original (n) |
| 1248 | "Start composing a wide reply mail to the current message. | 1248 | "Start composing a wide reply mail to the current message. |
| 1249 | The original article will be yanked. | 1249 | The original article(s) will be yanked. |
| 1250 | Uses the process/prefix convention." | 1250 | Uses the process/prefix convention." |
| 1251 | (interactive "P") | 1251 | (interactive "P") |
| 1252 | (gnus-summary-reply-with-original n t)) | 1252 | (gnus-summary-reply-with-original n t)) |
| 1253 | 1253 | ||
| 1254 | (defun gnus-summary-very-wide-reply (&optional yank) | 1254 | (defun gnus-summary-very-wide-reply (&optional yank) |
| 1255 | "Start composing a very wide reply mail to the current message. | 1255 | "Start composing a very wide reply mail to a set of messages. |
| 1256 | If prefix argument YANK is non-nil, the original article is yanked | 1256 | |
| 1257 | automatically." | 1257 | Uses the process/prefix convention. |
| 1258 | |||
| 1259 | The reply will include all From/Cc headers from the original | ||
| 1260 | messages as the To/Cc headers. | ||
| 1261 | |||
| 1262 | If prefix argument YANK is non-nil, the original article(s) will | ||
| 1263 | be yanked automatically." | ||
| 1258 | (interactive | 1264 | (interactive |
| 1259 | (list (and current-prefix-arg | 1265 | (list (and current-prefix-arg |
| 1260 | (gnus-summary-work-articles 1)))) | 1266 | (gnus-summary-work-articles 1)))) |
| 1261 | (gnus-summary-reply yank t (gnus-summary-work-articles yank))) | 1267 | (gnus-summary-reply yank t (gnus-summary-work-articles yank))) |
| 1262 | 1268 | ||
| 1263 | (defun gnus-summary-very-wide-reply-with-original (n) | 1269 | (defun gnus-summary-very-wide-reply-with-original (n) |
| 1264 | "Start composing a very wide reply mail to the current message. | 1270 | "Start composing a very wide reply mail a set of messages. |
| 1265 | The original article will be yanked." | 1271 | |
| 1272 | Uses the process/prefix convention. | ||
| 1273 | |||
| 1274 | The reply will include all From/Cc headers from the original | ||
| 1275 | messages as the To/Cc headers. | ||
| 1276 | |||
| 1277 | The original article(s) will be yanked." | ||
| 1266 | (interactive "P") | 1278 | (interactive "P") |
| 1267 | (gnus-summary-reply | 1279 | (gnus-summary-reply |
| 1268 | (gnus-summary-work-articles n) t (gnus-summary-work-articles n))) | 1280 | (gnus-summary-work-articles n) t (gnus-summary-work-articles n))) |