aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/smtpmail.el3
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bef6405d963..6c558723bdf 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12010-12-08 Glenn Morris <rgm@gnu.org>
2
3 * mail/smtpmail.el (smtpmail-send-it): Avoid colons in the queued
4 file names, for the sake of MS Windows. (Bug#7588)
5
12010-12-07 Stefan Monnier <monnier@iro.umontreal.ca> 62010-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * diff-mode.el (diff-refine-hunk): Make it work when the hunk contains 8 * diff-mode.el (diff-refine-hunk): Make it work when the hunk contains
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el
index 4e76de60188..1bf3fbe4a59 100644
--- a/lisp/mail/smtpmail.el
+++ b/lisp/mail/smtpmail.el
@@ -379,7 +379,7 @@ The list is in preference order.")
379 (let* ((file-data 379 (let* ((file-data
380 (expand-file-name 380 (expand-file-name
381 (format "%s_%i" 381 (format "%s_%i"
382 (format-time-string "%Y-%m-%d_%H:%M:%S") 382 (format-time-string "%Y-%m-%d_%H-%M-%S")
383 (setq smtpmail-queue-counter 383 (setq smtpmail-queue-counter
384 (1+ smtpmail-queue-counter))) 384 (1+ smtpmail-queue-counter)))
385 smtpmail-queue-dir)) 385 smtpmail-queue-dir))
@@ -1007,5 +1007,4 @@ many continuation lines."
1007 1007
1008(provide 'smtpmail) 1008(provide 'smtpmail)
1009 1009
1010;; arch-tag: a76992df-6d71-43b7-9e72-4bacc6c05466
1011;;; smtpmail.el ends here 1010;;; smtpmail.el ends here