aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Liu2011-10-09 09:44:43 +0800
committerLeo Liu2011-10-09 09:44:43 +0800
commit112a65928f488fe18fd699a839de70c4ebbe9beb (patch)
tree176c308fb67c4457a41b21afb4fe81e4da929002
parent0812589b0507ba6cad167d99d9c50fd30384cc33 (diff)
downloademacs-112a65928f488fe18fd699a839de70c4ebbe9beb.tar.gz
emacs-112a65928f488fe18fd699a839de70c4ebbe9beb.zip
Add a missing space in smtpmail-send-data
http://debbugs.gnu.org/9701
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/smtpmail.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1b3c22e8c73..ca38b372924 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12011-10-09 Leo Liu <sdl.web@gmail.com>
2
3 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
4 (Bug#9701)
5
12011-10-08 Glenn Morris <rgm@gnu.org> 62011-10-08 Glenn Morris <rgm@gnu.org>
2 7
3 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines 8 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el
index edcc82011af..026b03e350f 100644
--- a/lisp/mail/smtpmail.el
+++ b/lisp/mail/smtpmail.el
@@ -924,7 +924,7 @@ The list is in preference order.")
924(defun smtpmail-send-data (process buffer) 924(defun smtpmail-send-data (process buffer)
925 (let ((data-continue t) sending-data 925 (let ((data-continue t) sending-data
926 (pr (with-current-buffer buffer 926 (pr (with-current-buffer buffer
927 (make-progress-reporter "Sending email" 927 (make-progress-reporter "Sending email "
928 (point-min) (point-max))))) 928 (point-min) (point-max)))))
929 (with-current-buffer buffer 929 (with-current-buffer buffer
930 (goto-char (point-min))) 930 (goto-char (point-min)))