diff options
| author | Eli Zaretskii | 2005-11-04 14:51:08 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-11-04 14:51:08 +0000 |
| commit | 6c6bf1bbddefe3a7c9f3d0904c130723e2e919f1 (patch) | |
| tree | db389bb6f3ee76b0662ddd4a0d3fd8252c6f0d84 | |
| parent | 98e330e60c99dcd816630eec0af47087586a20ae (diff) | |
| download | emacs-6c6bf1bbddefe3a7c9f3d0904c130723e2e919f1.tar.gz emacs-6c6bf1bbddefe3a7c9f3d0904c130723e2e919f1.zip | |
(rmail-output-to-rmail-file, rmail-output): Doc fix.
| -rw-r--r-- | lisp/mail/rmailout.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/mail/rmailout.el b/lisp/mail/rmailout.el index d97c181eb81..97654ae92c5 100644 --- a/lisp/mail/rmailout.el +++ b/lisp/mail/rmailout.el | |||
| @@ -123,11 +123,11 @@ appended in inbox format, the same way `rmail-output' does it. | |||
| 123 | The default file name comes from `rmail-default-rmail-file', | 123 | The default file name comes from `rmail-default-rmail-file', |
| 124 | which is updated to the name you use in this command. | 124 | which is updated to the name you use in this command. |
| 125 | 125 | ||
| 126 | A prefix argument N says to output N consecutive messages | 126 | A prefix argument COUNT says to output that many consecutive messages, |
| 127 | starting with the current one. Deleted messages are skipped and don't count. | 127 | starting with the current one. Deleted messages are skipped and don't count. |
| 128 | 128 | ||
| 129 | If optional argument STAY is non-nil, then leave the last filed | 129 | If the optional argument STAY is non-nil, then leave the last filed |
| 130 | mesasge up instead of moving forward to the next non-deleted message." | 130 | message up instead of moving forward to the next non-deleted message." |
| 131 | (interactive | 131 | (interactive |
| 132 | (list (rmail-output-read-rmail-file-name) | 132 | (list (rmail-output-read-rmail-file-name) |
| 133 | (prefix-numeric-value current-prefix-arg))) | 133 | (prefix-numeric-value current-prefix-arg))) |
| @@ -265,9 +265,9 @@ mesasge up instead of moving forward to the next non-deleted message." | |||
| 265 | ;;;###autoload | 265 | ;;;###autoload |
| 266 | (defun rmail-output (file-name &optional count noattribute from-gnus) | 266 | (defun rmail-output (file-name &optional count noattribute from-gnus) |
| 267 | "Append this message to system-inbox-format mail file named FILE-NAME. | 267 | "Append this message to system-inbox-format mail file named FILE-NAME. |
| 268 | A prefix argument N says to output N consecutive messages | 268 | A prefix argument COUNT says to output that many consecutive messages, |
| 269 | starting with the current one. Deleted messages are skipped and don't count. | 269 | starting with the current one. Deleted messages are skipped and don't count. |
| 270 | When called from lisp code, N may be omitted. | 270 | When called from lisp code, COUNT may be omitted and defaults to 1. |
| 271 | 271 | ||
| 272 | If the pruned message header is shown on the current message, then | 272 | If the pruned message header is shown on the current message, then |
| 273 | messages will be appended with pruned headers; otherwise, messages | 273 | messages will be appended with pruned headers; otherwise, messages |