Mercurial > emacs
changeset 24871:45799f110d16
(smtpmail-send-it): Use convert-standard-filename to make file names
for queued mail safe on Windows (`:' is invalid in file names on
Windows).
author | Andrew Innes <andrewi@gnu.org> |
---|---|
date | Fri, 18 Jun 1999 21:20:48 +0000 |
parents | b0f6eab5deeb |
children | 9db8a7ed814e |
files | lisp/mail/smtpmail.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/smtpmail.el Fri Jun 18 06:11:29 1999 +0000 +++ b/lisp/mail/smtpmail.el Fri Jun 18 21:20:48 1999 +0000 @@ -238,7 +238,8 @@ smtpmail-queue-dir (concat (time-stamp-yyyy-mm-dd) "_" (time-stamp-hh:mm:ss)))) - (file-elisp (concat file-data ".el")) + (file-data (convert-standard-filename file-data)) + (file-elisp (concat file-data ".el")) (buffer-data (create-file-buffer file-data)) (buffer-elisp (create-file-buffer file-elisp)) (buffer-scratch "*queue-mail*"))