]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typos in previous change.
authorRichard M. Stallman <rms@gnu.org>
Sat, 10 Jul 1993 05:09:45 +0000 (05:09 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 10 Jul 1993 05:09:45 +0000 (05:09 +0000)
lisp/mail/rmailout.el

index d2584dd848ba641486ebe7c9d6ed61e7dcb1b1ac..dbec79096d88d379da95aa866f5aabd42d2a454b 100644 (file)
@@ -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