From 529dabc019ae6ea2bfa50908b4468858ced1d0c2 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Sun, 27 Oct 2002 13:01:05 +0000 Subject: [PATCH] Synch with Oort Gnus. --- lisp/ChangeLog | 5 +++++ lisp/nnimap.el | 8 +++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cdd42c2..0e96572 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2002-10-26 Kai Gro,A_(Bjohann + + * nnimap.el (nnimap-request-article-part): Try harder to show + group name in debugging message. + 2002-10-25 Kai Gro,A_(Bjohann * gnus-agent.el (gnus-agent-save-fetched-headers): Create diff --git a/lisp/nnimap.el b/lisp/nnimap.el index 4a0d8a4..ba0f5d5 100644 --- a/lisp/nnimap.el +++ b/lisp/nnimap.el @@ -809,7 +809,8 @@ function is generally only called when Gnus is shutting down." article))) (when article (gnus-message 10 "nnimap: Fetching (part of) article %d from %s..." - article (or group imap-current-mailbox)) + article (or group imap-current-mailbox + gnus-newsgroup-name)) (if (not nnheader-callback-function) (with-current-buffer (or to-buffer nntp-server-buffer) (erase-buffer) @@ -820,10 +821,11 @@ function is generally only called when Gnus is shutting down." (nnheader-ms-strip-cr) (gnus-message 10 "nnimap: Fetching (part of) article %d from %s...done" - article (or group imap-current-mailbox)) + article (or group imap-current-mailbox gnus-newsgroup-name)) (if (bobp) (nnheader-report 'nnimap "No such article %d in %s: %s" - article (or group imap-current-mailbox) + article (or group imap-current-mailbox + gnus-newsgroup-name) (imap-error-text nnimap-server-buffer)) (cons group article))))) (add-hook 'imap-fetch-data-hook 'nnimap-callback) -- 1.7.10.4