diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-07-24 21:16:29 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-07-24 21:16:29 +0000 |
commit | e76841099a7068e805a903de44a8dd74c874fc87 (patch) | |
tree | a26dc209c9932e96ced783618200917a75435e7d /lisp/mail/rmailout.el | |
parent | b1d9bfa735f4c6eb57d22ce49405b6acd6180b9b (diff) | |
download | emacs-e76841099a7068e805a903de44a8dd74c874fc87.tar.gz |
(rmail-output-to-rmail-file): Set rmail-last-rmail-file
while reading the interactive args.
(rmail-output): Likewise, for rmail-last-file.
(rmail-output-to-rmail-file): Use default-file consistently.
Diffstat (limited to 'lisp/mail/rmailout.el')
-rw-r--r-- | lisp/mail/rmailout.el | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/lisp/mail/rmailout.el b/lisp/mail/rmailout.el index dbec79096d8..1be4cacb871 100644 --- a/lisp/mail/rmailout.el +++ b/lisp/mail/rmailout.el @@ -59,12 +59,13 @@ starting with the current one. Deleted messages are skipped and don't count." (setq tail (cdr tail)))) ;; If not suggestions, use same file as last time. (or answer rmail-last-rmail-file)))) - (list (read-file-name - (concat "Output message to Rmail file: (default " - (file-name-nondirectory default-file) - ") ") - (file-name-directory rmail-last-rmail-file) - default-file) + (list (setq rmail-last-rmail-file + (read-file-name + (concat "Output message to Rmail file: (default " + (file-name-nondirectory default-file) + ") ") + (file-name-directory default-file) + default-file)) (prefix-numeric-value current-prefix-arg)))) (or count (setq count 1)) (setq file-name @@ -72,7 +73,6 @@ starting with the current one. Deleted messages are skipped and don't count." (file-name-directory rmail-last-rmail-file))) (if (and (file-readable-p file-name) (not (rmail-file-p file-name))) (rmail-output file-name count) - (setq rmail-last-rmail-file file-name) (rmail-maybe-set-message-counters) (setq file-name (abbreviate-file-name file-name)) (or (get-file-buffer file-name) @@ -154,15 +154,16 @@ A prefix argument N says to output N consecutive messages starting with the current one. Deleted messages are skipped and don't count. When called from lisp code, N may be omitted." (interactive - (list (read-file-name - (concat "Output message to Unix mail file" - (if rmail-last-file - (concat " (default " - (file-name-nondirectory rmail-last-file) - "): " ) - ": ")) - (and rmail-last-file (file-name-directory rmail-last-file)) - rmail-last-file) + (list (setq rmail-last-file + (read-file-name + (concat "Output message to Unix mail file" + (if rmail-last-file + (concat " (default " + (file-name-nondirectory rmail-last-file) + "): " ) + ": ")) + (and rmail-last-file (file-name-directory rmail-last-file)) + rmail-last-file)) (prefix-numeric-value current-prefix-arg))) (or count (setq count 1)) (setq file-name @@ -171,7 +172,6 @@ When called from lisp code, N may be omitted." (file-name-directory rmail-last-file)))) (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) (let ((rmailbuf (current-buffer)) (tembuf (get-buffer-create " rmail-output")) |