From 0814c6a394f62cf97dbfa2c47fc37e88755157ef Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 22 Mar 2006 00:36:23 +0000 Subject: [PATCH] Synch to No Gnus 200603220035. --- lisp/ChangeLog | 5 +++++ lisp/gnus-sum.el | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index aae486b..a053f81 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-03-22 Katsumi Yamaoka + + * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro. + Reported by Ralf Wachinger . + 2006-03-21 Simon Josefsson * pgg-gpg.el: Ideas below based on patch from Sascha Wilde diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el index 86a3f5d..7df8db9 100644 --- a/lisp/gnus-sum.el +++ b/lisp/gnus-sum.el @@ -10977,8 +10977,10 @@ Returns nil if no thread was there to be shown." (defun gnus-map-articles (predicate articles) "Map PREDICATE over ARTICLES and return non-nil if any predicate is non-nil." - (apply 'gnus-or (mapcar predicate - (mapcar 'gnus-summary-article-header articles)))) + (apply 'gnus-or (mapcar predicaten + (mapcar (lambda (number) + (gnus-summary-article-header number)) + articles)))) (defun gnus-summary-hide-all-threads (&optional predicate) "Hide all thread subtrees. -- 1.7.10.4