diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-07-10 05:09:45 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-07-10 05:09:45 +0000 |
commit | 757e603c903f9557c6bebbc9630127c5967d64f7 (patch) | |
tree | 5c8c58393b489b6c1cd7f0657ea0f4c085bf64d6 /lisp/mail/rmailout.el | |
parent | 97f3b3d6e9f5524a01443f9352737013be4fc6ae (diff) | |
download | emacs-757e603c903f9557c6bebbc9630127c5967d64f7.tar.gz |
Fix typos in previous change.
Diffstat (limited to 'lisp/mail/rmailout.el')
-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." (expand-file-name file-name (and rmail-last-file (file-name-directory rmail-last-file)))) - (if (and (file-readable-p file) (rmail-file-p file-name)) + (if (and (file-readable-p file-name) (rmail-file-p file-name)) (rmail-output-to-rmail-file file-name count) (setq rmail-last-file file-name) (while (> count 0) @@ -202,6 +202,6 @@ When called from lisp code, N may be omitted." (if rmail-delete-after-output (rmail-delete-forward) (if (> count 0) - (rmail-next-undeleted-message 1))))) + (rmail-next-undeleted-message 1)))))) ;;; rmailout.el ends here |