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:
parent
7520339cd1
commit
65a046c491
2 changed files with 4 additions and 1 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue