[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100285: Small smtpmail fix for bu
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100285: Small smtpmail fix for bug#7588. |
Date: |
Tue, 07 Dec 2010 19:29:41 -0800 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 100285
committer: Glenn Morris <address@hidden>
branch nick: emacs-23
timestamp: Tue 2010-12-07 19:29:41 -0800
message:
Small smtpmail fix for bug#7588.
* lisp/mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued
file names, for the sake of MS Windows.
modified:
lisp/ChangeLog
lisp/mail/smtpmail.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2010-12-08 03:25:57 +0000
+++ b/lisp/ChangeLog 2010-12-08 03:29:41 +0000
@@ -1,3 +1,8 @@
+2010-12-08 Glenn Morris <address@hidden>
+
+ * mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued
+ file names, for the sake of MS Windows. (Bug#7588)
+
2010-12-07 Stefan Monnier <address@hidden>
* diff-mode.el (diff-refine-hunk): Make it work when the hunk contains
=== modified file 'lisp/mail/smtpmail.el'
--- a/lisp/mail/smtpmail.el 2010-01-13 08:35:10 +0000
+++ b/lisp/mail/smtpmail.el 2010-12-08 03:29:41 +0000
@@ -379,7 +379,7 @@
(let* ((file-data
(expand-file-name
(format "%s_%i"
- (format-time-string "%Y-%m-%d_%H:%M:%S")
+ (format-time-string "%Y-%m-%d_%H-%M-%S")
(setq smtpmail-queue-counter
(1+ smtpmail-queue-counter)))
smtpmail-queue-dir))
@@ -1007,5 +1007,4 @@
(provide 'smtpmail)
-;; arch-tag: a76992df-6d71-43b7-9e72-4bacc6c05466
;;; smtpmail.el ends here
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100285: Small smtpmail fix for bug#7588.,
Glenn Morris <=