aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Josefsson2002-08-30 10:32:25 +0000
committerSimon Josefsson2002-08-30 10:32:25 +0000
commit1121afb461cb7dea8362486180eb0febaeec4b46 (patch)
treea55ce57bd522c263040c2e436de3c1a268d356c5
parent2d187490c2a1ac5e1a35b99186cbdd4aa9ebcef4 (diff)
downloademacs-1121afb461cb7dea8362486180eb0febaeec4b46.tar.gz
emacs-1121afb461cb7dea8362486180eb0febaeec4b46.zip
(smtpmail-via-smtp): Delete process buffer
unless s-debug-info is enabled.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/smtpmail.el4
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1a20a5dc728..0fdfb058326 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-08-30 Simon Josefsson <jas@extundo.com>
2
3 * mail/smtpmail.el (smtpmail-via-smtp): Delete process buffer
4 unless s-debug-info is enabled.
5
12002-08-29 John Paul Wallington <jpw@shootybangbang.com> 62002-08-29 John Paul Wallington <jpw@shootybangbang.com>
2 7
3 * ibuffer.el (ibuffer-update): Use `minibufferp'. Expand `caddr'. 8 * ibuffer.el (ibuffer-update): Use `minibufferp'. Expand `caddr'.
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el
index f43c5f17858..3460a75a522 100644
--- a/lisp/mail/smtpmail.el
+++ b/lisp/mail/smtpmail.el
@@ -749,7 +749,9 @@ This is relative to `smtpmail-queue-dir'.")
749; (>= (car response-code) 400)) 749; (>= (car response-code) 400))
750; (throw 'done nil) 750; (throw 'done nil)
751; ) 751; )
752 (delete-process process)))))) 752 (delete-process process)
753 (unless smtpmail-debug-info
754 (kill-buffer process-buffer)))))))
753 755
754 756
755(defun smtpmail-process-filter (process output) 757(defun smtpmail-process-filter (process output)