diff options
| -rw-r--r-- | lisp/mail/rmail.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index d2329452ce4..6e3056da407 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -1803,9 +1803,9 @@ is non-nil if the user has supplied the password interactively. | |||
| 1803 | ;; in case of multiple inboxes that need moving. | 1803 | ;; in case of multiple inboxes that need moving. |
| 1804 | (concat ".newmail-" | 1804 | (concat ".newmail-" |
| 1805 | (file-name-nondirectory | 1805 | (file-name-nondirectory |
| 1806 | (if (memq system-type '(windows-nt cygwin)) | 1806 | (if (memq system-type '(windows-nt cygwin ms-dos)) |
| 1807 | ;; cannot have "po:" in file name | 1807 | ;; cannot have colons in file name |
| 1808 | (substring file 3) | 1808 | (replace-regexp-in-string ":" "-" file) |
| 1809 | file))) | 1809 | file))) |
| 1810 | ;; Use the directory of this rmail file | 1810 | ;; Use the directory of this rmail file |
| 1811 | ;; because it's a nuisance to use the homedir | 1811 | ;; because it's a nuisance to use the homedir |