diff options
| author | Lars Magne Ingebrigtsen | 2011-09-15 00:57:57 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-09-15 00:57:57 +0200 |
| commit | 65a046c491c62a3cc535845b87fed5e645e874c8 (patch) | |
| tree | bfa295261662d155655df266046c7258997efbb7 | |
| parent | 7520339cd1226cd3d4c0691df4b2291aa60b7118 (diff) | |
| download | emacs-65a046c491c62a3cc535845b87fed5e645e874c8.tar.gz emacs-65a046c491c62a3cc535845b87fed5e645e874c8.zip | |
Update the process marker so that the "broken by peer" status message is inserted in the right place.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/mail/smtpmail.el | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6804f4150af..3d71b646b7a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | 2 | ||
| 3 | * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH | 3 | * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH |
| 4 | passwords in the log buffer. | 4 | passwords in the log buffer. |
| 5 | (smtpmail-process-filter): Update the process marker so that the | ||
| 6 | "broken by peer" status message is inserted in the right place. | ||
| 5 | 7 | ||
| 6 | 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca> | 8 | 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca> |
| 7 | 9 | ||
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 42c43c0951c..9fe19581e81 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el | |||
| @@ -835,7 +835,8 @@ The list is in preference order.") | |||
| 835 | (defun smtpmail-process-filter (process output) | 835 | (defun smtpmail-process-filter (process output) |
| 836 | (with-current-buffer (process-buffer process) | 836 | (with-current-buffer (process-buffer process) |
| 837 | (goto-char (point-max)) | 837 | (goto-char (point-max)) |
| 838 | (insert output))) | 838 | (insert output) |
| 839 | (set-marker (process-mark process) (point)))) | ||
| 839 | 840 | ||
| 840 | (defun smtpmail-read-response (process) | 841 | (defun smtpmail-read-response (process) |
| 841 | (let ((case-fold-search nil) | 842 | (let ((case-fold-search nil) |