aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2011-01-30 03:00:34 +0000
committerKatsumi Yamaoka2011-01-30 03:00:34 +0000
commit7920f982949ff41796a9be16e8cce5e797e6caa9 (patch)
tree915e989db672316f2ae61d74c6f52c721a0bee2a
parentfe72c8fa4e93465e99aa7075fec90ac5b32915ab (diff)
downloademacs-7920f982949ff41796a9be16e8cce5e797e6caa9.tar.gz
emacs-7920f982949ff41796a9be16e8cce5e797e6caa9.zip
nnmail.el (nnmail-article-group): A better test for fanciness.
-rw-r--r--lisp/gnus/ChangeLog1
-rw-r--r--lisp/gnus/nnmail.el3
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index bfdda731d35..10cf1a02f05 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -2,6 +2,7 @@
2 2
3 * nnmail.el (nnmail-article-group): Check for a direct fancy split 3 * nnmail.el (nnmail-article-group): Check for a direct fancy split
4 method. 4 method.
5 (nnmail-article-group): A better test for fanciness.
5 6
6 * nnimap.el (nnimap-request-head): Protect against not finding the 7 * nnimap.el (nnimap-request-head): Protect against not finding the
7 article by Message-ID. 8 article by Message-ID.
diff --git a/lisp/gnus/nnmail.el b/lisp/gnus/nnmail.el
index a41a5d73344..b2336e13b64 100644
--- a/lisp/gnus/nnmail.el
+++ b/lisp/gnus/nnmail.el
@@ -1148,8 +1148,7 @@ FUNC will be called with the group name to determine the article number."
1148 (setq nnmail-split-trace nil)) 1148 (setq nnmail-split-trace nil))
1149 (if (or (and (symbolp nnmail-split-methods) 1149 (if (or (and (symbolp nnmail-split-methods)
1150 (fboundp nnmail-split-methods)) 1150 (fboundp nnmail-split-methods))
1151 (memq (car-safe nnmail-split-methods) 1151 (not (consp (car-safe nnmail-split-methods)))
1152 '(| &))
1153 (and (listp nnmail-split-methods) 1152 (and (listp nnmail-split-methods)
1154 ;; Not a regular split method, so it has to be a 1153 ;; Not a regular split method, so it has to be a
1155 ;; fancy one. 1154 ;; fancy one.