From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/22972 Path: main.gmane.org!not-for-mail From: Mike McEwan Newsgroups: gmane.emacs.gnus.general Subject: [patch ?] Re: XFaces, smileys Date: 12 May 1999 17:23:11 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035160792 32033 80.91.224.250 (21 Oct 2002 00:39:52 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:39:52 +0000 (UTC) Return-Path: Original-Received: from farabi.math.uh.edu (farabi.math.uh.edu [129.7.128.57]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id MAA29773 for ; Wed, 12 May 1999 12:26:03 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.1/8.9.1) with ESMTP id LAB22385; Wed, 12 May 1999 11:25:20 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 12 May 1999 11:25:57 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id LAA02963 for ; Wed, 12 May 1999 11:25:46 -0500 (CDT) Original-Received: from tele-post-20.mail.demon.net (tele-post-20.mail.demon.net [194.217.242.20]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id MAA29754 for ; Wed, 12 May 1999 12:25:33 -0400 (EDT) Original-Received: from [158.152.62.156] (helo=lotusland.demon.co.uk) by tele-post-20.mail.demon.net with esmtp (Exim 2.12 #2) id 10hboR-000A44-0K for ding@gnus.org; Wed, 12 May 1999 16:24:51 +0000 Original-Received: from mike by lotusland.demon.co.uk with local (Exim 2.12 #1) id 10hbof-0000Kv-00 for ding@gnus.org; Wed, 12 May 1999 17:25:05 +0100 Original-To: ding@gnus.org User-Agent: Gnus/5.070084 (Pterodactyl Gnus v0.84) XEmacs/21.2(beta13) (Demeter) Original-Lines: 51 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:22972 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:22972 Apologies if the list receives 2 copies of this - hit `R' instaed of `F' - I think? Norbert Koch writes: > Uh, what OS are you running on? WinNT too? I'm running Linux. Any how's, I see what the problem is, I'm just not quite sure if the following fix is the best way to fix it. It would appear the `article-hide-headers is now deleting headers, where as before it was simply marking them as invisible. This means that as `article-display-x-face' was being called after 'article-hide-headers', there was no longer any `x-face' header, invisible or otherwise, for the function to decode. -- Mike. --- ChangeLog 1999/05/02 10:48:20 1.1.1.33 +++ ChangeLog 1999/05/12 15:45:10 @@ -1,3 +1,8 @@ +1999-05-12 Mike McEwan + + * gnus-art.el (gnus-treatment-function-alist): Display `x-face' + *before* `article-hide-headers' deletes the information. + Sat May 1 20:27:43 1999 Lars Magne Ingebrigtsen * gnus.el: Pterodactyl Gnus v0.84 is released. --- gnus-art.el 1999/05/02 10:48:20 1.1.1.32 +++ gnus-art.el 1999/05/10 16:46:50 @@ -890,6 +890,7 @@ (gnus-treat-fill-long-lines gnus-article-fill-long-lines) (gnus-treat-strip-cr gnus-article-remove-cr) (gnus-treat-emphasize gnus-article-emphasize) + (gnus-treat-display-xface gnus-article-display-x-face) (gnus-treat-hide-headers gnus-article-maybe-hide-headers) (gnus-treat-hide-boring-headers gnus-article-hide-boring-headers) (gnus-treat-hide-signature gnus-article-hide-signature) @@ -914,7 +915,6 @@ (gnus-treat-strip-blank-lines gnus-article-strip-blank-lines) (gnus-treat-overstrike gnus-article-treat-overstrike) (gnus-treat-buttonize-head gnus-article-add-buttons-to-head) - (gnus-treat-display-xface gnus-article-display-x-face) (gnus-treat-display-smileys gnus-smiley-display) (gnus-treat-display-picons gnus-article-display-picons) (gnus-treat-play-sounds gnus-earcon-display)))