From: yamaoka Date: Mon, 18 Feb 2002 07:56:05 +0000 (+0000) Subject: Synch with Oort Gnus. X-Git-Tag: t-gnus-6_15_6-01-quimby~50 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=0b67cb22ddf8f1e4005326f3107f90c5f30ba399;p=elisp%2Fgnus.git- Synch with Oort Gnus. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ce9bebd..aade0cf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,10 @@ 2002-02-18 Katsumi Yamaoka + * gnus-art.el (article-display-x-face): Don't sort multiple + X-Faces. + +2002-02-18 Katsumi Yamaoka + * gnus-fun.el (gnus-convert-gray-x-face-to-xpm): Improved to speed up. Suggested by Yuuichi Teranishi . diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el index b8401d4..0e96de8 100644 --- a/lisp/gnus-art.el +++ b/lisp/gnus-art.el @@ -2066,7 +2066,9 @@ unfolded." x-faces)) (push (cons 0 (mail-header-field-value)) x-faces))) (dolist (x-face (prog1 - (sort x-faces 'car-less-than-car) + (if grey + (sort x-faces 'car-less-than-car) + (nreverse x-faces)) (setq x-faces nil))) (push (cdr x-face) x-faces))) (while (gnus-article-goto-header "X-Face")