diff options
| author | Richard M. Stallman | 1993-07-10 05:09:45 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-07-10 05:09:45 +0000 |
| commit | 757e603c903f9557c6bebbc9630127c5967d64f7 (patch) | |
| tree | 5c8c58393b489b6c1cd7f0657ea0f4c085bf64d6 | |
| parent | 97f3b3d6e9f5524a01443f9352737013be4fc6ae (diff) | |
| download | emacs-757e603c903f9557c6bebbc9630127c5967d64f7.tar.gz emacs-757e603c903f9557c6bebbc9630127c5967d64f7.zip | |
Fix typos in previous change.
| -rw-r--r-- | lisp/mail/rmailout.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/rmailout.el b/lisp/mail/rmailout.el index d2584dd848b..dbec79096d8 100644 --- a/lisp/mail/rmailout.el +++ b/lisp/mail/rmailout.el | |||
| @@ -169,7 +169,7 @@ When called from lisp code, N may be omitted." | |||
| 169 | (expand-file-name file-name | 169 | (expand-file-name file-name |
| 170 | (and rmail-last-file | 170 | (and rmail-last-file |
| 171 | (file-name-directory rmail-last-file)))) | 171 | (file-name-directory rmail-last-file)))) |
| 172 | (if (and (file-readable-p file) (rmail-file-p file-name)) | 172 | (if (and (file-readable-p file-name) (rmail-file-p file-name)) |
| 173 | (rmail-output-to-rmail-file file-name count) | 173 | (rmail-output-to-rmail-file file-name count) |
| 174 | (setq rmail-last-file file-name) | 174 | (setq rmail-last-file file-name) |
| 175 | (while (> count 0) | 175 | (while (> count 0) |
| @@ -202,6 +202,6 @@ When called from lisp code, N may be omitted." | |||
| 202 | (if rmail-delete-after-output | 202 | (if rmail-delete-after-output |
| 203 | (rmail-delete-forward) | 203 | (rmail-delete-forward) |
| 204 | (if (> count 0) | 204 | (if (> count 0) |
| 205 | (rmail-next-undeleted-message 1))))) | 205 | (rmail-next-undeleted-message 1)))))) |
| 206 | 206 | ||
| 207 | ;;; rmailout.el ends here | 207 | ;;; rmailout.el ends here |