From: yamaoka Date: Tue, 7 May 2002 22:48:42 +0000 (+0000) Subject: Synch with Oort Gnus. X-Git-Tag: t-gnus-6_15_7-01-quimby~17 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=08cdf8538d87cd0cd4de5c9e8bae2cdc9f22ea61;p=elisp%2Fgnus.git- Synch with Oort Gnus. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d87788f..135052f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2002-05-07 Kai Gro,A_(Bjohann + + * nnmail.el (nnmail-cache-insert): Prefer group-art over group + when intuiting the group the message is written to. From Josh + Huber . + 2002-05-06 Simon Josefsson * gnus-topic.el (gnus-group-topic-parameters): Work when group diff --git a/lisp/nnmail.el b/lisp/nnmail.el index a98a187..07c2f79 100644 --- a/lisp/nnmail.el +++ b/lisp/nnmail.el @@ -1470,13 +1470,13 @@ See the documentation for the variable `nnmail-split-fancy' for documentation." (let ((g nil)) (cond (grp (setq g grp)) + ((and (boundp 'group-art) group-art (listp group-art)) + (setq g (caar group-art))) ((and (boundp 'group) group) (setq g group)) ((and (boundp 'group-art-list) group-art-list (listp group-art-list)) (setq g (caar group-art-list))) - ((and (boundp 'group-art) group-art (listp group-art)) - (setq g (caar group-art))) (t (setq g ""))) (unless (gnus-buffer-live-p nnmail-cache-buffer) (nnmail-cache-open))