1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Update the process marker so that the "broken by peer" status message is inserted in the right place.

This commit is contained in:
Lars Magne Ingebrigtsen 2011-09-15 00:57:57 +02:00
parent 7520339cd1
commit 65a046c491
2 changed files with 4 additions and 1 deletions

View file

@ -2,6 +2,8 @@
* mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
passwords in the log buffer.
(smtpmail-process-filter): Update the process marker so that the
"broken by peer" status message is inserted in the right place.
2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>

View file

@ -835,7 +835,8 @@ The list is in preference order.")
(defun smtpmail-process-filter (process output)
(with-current-buffer (process-buffer process)
(goto-char (point-max))
(insert output)))
(insert output)
(set-marker (process-mark process) (point))))
(defun smtpmail-read-response (process)
(let ((case-fold-search nil)