From: Richard M. Stallman Date: Sat, 10 Jul 1993 05:09:45 +0000 (+0000) Subject: Fix typos in previous change. X-Git-Tag: emacs-19.34~11793 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=757e603c903f9557c6bebbc9630127c5967d64f7;p=emacs.git Fix typos in previous change. --- 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