diff options
| author | Leo Liu | 2011-10-09 09:44:43 +0800 |
|---|---|---|
| committer | Leo Liu | 2011-10-09 09:44:43 +0800 |
| commit | 112a65928f488fe18fd699a839de70c4ebbe9beb (patch) | |
| tree | 176c308fb67c4457a41b21afb4fe81e4da929002 | |
| parent | 0812589b0507ba6cad167d99d9c50fd30384cc33 (diff) | |
| download | emacs-112a65928f488fe18fd699a839de70c4ebbe9beb.tar.gz emacs-112a65928f488fe18fd699a839de70c4ebbe9beb.zip | |
Add a missing space in smtpmail-send-data
http://debbugs.gnu.org/9701
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/smtpmail.el | 2 |
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 @@ | |||
| 1 | 2011-10-09 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * mail/smtpmail.el (smtpmail-send-data): Add a missing space. | ||
| 4 | (Bug#9701) | ||
| 5 | |||
| 1 | 2011-10-08 Glenn Morris <rgm@gnu.org> | 6 | 2011-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))) |