aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-15 01:22:53 +0000
committerRichard M. Stallman1994-01-15 01:22:53 +0000
commitfdc9edf23929655709bc007dbf66cfe8fe2f405b (patch)
treea278a96367d3f5c345d5516470a021dee1f70c05
parent10e6ca88b14352139a44e9261ac33f363f7d8fff (diff)
downloademacs-fdc9edf23929655709bc007dbf66cfe8fe2f405b.tar.gz
emacs-fdc9edf23929655709bc007dbf66cfe8fe2f405b.zip
Use new names rmail-default-file and rmail-default-rmail-file.
-rw-r--r--lisp/mail/rmailout.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/mail/rmailout.el b/lisp/mail/rmailout.el
index fa7c921de65..d74e3ad403a 100644
--- a/lisp/mail/rmailout.el
+++ b/lisp/mail/rmailout.el
@@ -59,8 +59,8 @@ starting with the current one. Deleted messages are skipped and don't count."
59 (setq answer (eval (cdr (car tail))))) 59 (setq answer (eval (cdr (car tail)))))
60 (setq tail (cdr tail)))) 60 (setq tail (cdr tail))))
61 ;; If not suggestions, use same file as last time. 61 ;; If not suggestions, use same file as last time.
62 (or answer rmail-last-rmail-file)))) 62 (or answer rmail-default-rmail-file))))
63 (list (setq rmail-last-rmail-file 63 (list (setq rmail-default-rmail-file
64 (let ((read-file 64 (let ((read-file
65 (read-file-name 65 (read-file-name
66 (concat "Output message to Rmail file: (default " 66 (concat "Output message to Rmail file: (default "
@@ -78,7 +78,7 @@ starting with the current one. Deleted messages are skipped and don't count."
78 (or count (setq count 1)) 78 (or count (setq count 1))
79 (setq file-name 79 (setq file-name
80 (expand-file-name file-name 80 (expand-file-name file-name
81 (file-name-directory rmail-last-rmail-file))) 81 (file-name-directory rmail-default-rmail-file)))
82 (if (and (file-readable-p file-name) (not (rmail-file-p file-name))) 82 (if (and (file-readable-p file-name) (not (rmail-file-p file-name)))
83 (rmail-output file-name count) 83 (rmail-output file-name count)
84 (rmail-maybe-set-message-counters) 84 (rmail-maybe-set-message-counters)
@@ -183,22 +183,22 @@ to set the `filed' attribute, and not to display a message.
183 183
184The optional fourth argument FROM-GNUS is set when called from GNUS." 184The optional fourth argument FROM-GNUS is set when called from GNUS."
185 (interactive 185 (interactive
186 (list (setq rmail-last-file 186 (list (setq rmail-default-file
187 (read-file-name 187 (read-file-name
188 (concat "Output message to Unix mail file" 188 (concat "Output message to Unix mail file"
189 (if rmail-last-file 189 (if rmail-default-file
190 (concat " (default " 190 (concat " (default "
191 (file-name-nondirectory rmail-last-file) 191 (file-name-nondirectory rmail-default-file)
192 "): " ) 192 "): " )
193 ": ")) 193 ": "))
194 (and rmail-last-file (file-name-directory rmail-last-file)) 194 (and rmail-default-file (file-name-directory rmail-default-file))
195 rmail-last-file)) 195 rmail-default-file))
196 (prefix-numeric-value current-prefix-arg))) 196 (prefix-numeric-value current-prefix-arg)))
197 (or count (setq count 1)) 197 (or count (setq count 1))
198 (setq file-name 198 (setq file-name
199 (expand-file-name file-name 199 (expand-file-name file-name
200 (and rmail-last-file 200 (and rmail-default-file
201 (file-name-directory rmail-last-file)))) 201 (file-name-directory rmail-default-file))))
202 (if (and (file-readable-p file-name) (rmail-file-p file-name)) 202 (if (and (file-readable-p file-name) (rmail-file-p file-name))
203 (rmail-output-to-rmail-file file-name count) 203 (rmail-output-to-rmail-file file-name count)
204 (let ((orig-count count) 204 (let ((orig-count count)