1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-01 08:17:38 +00:00

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-174

Merge from gnus--rel--5.10

Patches applied:

 * gnus--rel--5.10  (patch 65-66)

   - Update from CVS
This commit is contained in:
Miles Bader 2006-03-23 23:11:47 +00:00
parent de82e530c7
commit d451514f7e
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-03-22 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
Reported by Ralf Wachinger <rwachinger@gmx.de>.
2006-03-23 Kenichi Handa <handa@m17n.org>
* rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte

View File

@ -10619,7 +10619,9 @@ 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))))
(mapcar (lambda (number)
(gnus-summary-article-header number))
articles))))
(defun gnus-summary-hide-all-threads (&optional predicate)
"Hide all thread subtrees.