Synch to Gnus 200307100743.
authoryamaoka <yamaoka>
Thu, 10 Jul 2003 11:06:53 +0000 (11:06 +0000)
committeryamaoka <yamaoka>
Thu, 10 Jul 2003 11:06:53 +0000 (11:06 +0000)
lisp/ChangeLog
lisp/imap.el

index bfc68ec..9544017 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-10  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
+
+       * imap.el (imap-arrival-filter): Fix test for missing process
+       buffer.
+
 2003-07-09  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
        From Gaute B Strokkenes <gs234@cam.ac.uk> (tiny patch).
 
index 76d53ab..e4adc3a 100644 (file)
@@ -1777,7 +1777,7 @@ Return nil if no complete line has arrived."
   "IMAP process filter."
   ;; Sometimes, we are called even though the process has died.
   ;; Better abstain from doing stuff in that case.
-  (when (process-buffer proc)
+  (when (buffer-name (process-buffer proc))
     (with-current-buffer (process-buffer proc)
       (goto-char (point-max))
       (insert string)