From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/52801 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: bluegreen ticked articles...? Date: Fri, 23 May 2003 11:15:14 +0200 Sender: ding-owner@lists.math.uh.edu Message-ID: References: <87znleozu6.fsf@home.lan> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1053681253 19260 80.91.224.249 (23 May 2003 09:14:13 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 23 May 2003 09:14:13 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+M1344@lists.math.uh.edu Fri May 23 11:14:06 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19J8co-0004zv-00 for ; Fri, 23 May 2003 11:14:06 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19J8eH-0007LK-00; Fri, 23 May 2003 04:15:37 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19J8e4-0007LE-00 for ding@lists.math.uh.edu; Fri, 23 May 2003 04:15:24 -0500 Original-Received: (qmail 41568 invoked by alias); 23 May 2003 09:15:24 -0000 Original-Received: (qmail 41563 invoked from network); 23 May 2003 09:15:23 -0000 Original-Received: from 178.230.13.217.in-addr.dgcsystems.net (HELO yxa.extundo.com) (217.13.230.178) by sclp3.sclp.com with SMTP; 23 May 2003 09:15:23 -0000 Original-Received: from latte-wlan.josefsson.org (yxa.extundo.com [217.13.230.178]) (authenticated bits=0) by yxa.extundo.com (8.12.9/8.12.9) with ESMTP id h4N9FEB4012191 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Fri, 23 May 2003 11:15:15 +0200 Original-To: Steinar Bang Mail-Copies-To: nobody X-Payment: hashcash 1.2 0:030523:sb@dod.no:a3855d2df3d2d5bc X-Hashcash: 0:030523:sb@dod.no:a3855d2df3d2d5bc X-Payment: hashcash 1.2 0:030523:ding@gnus.org:85e74a00d4119e3a X-Hashcash: 0:030523:ding@gnus.org:85e74a00d4119e3a In-Reply-To: <87znleozu6.fsf@home.lan> (Steinar Bang's message of "Fri, 23 May 2003 10:02:25 +0200") User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3.50 (gnu/linux) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:52801 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:52801 Steinar Bang writes: > Is this a problem? Or have I encountered a new feature? Why do just > some of the articles change colour? You can customize gnus-summary-highlight, or apply the following patch if you don't want to pollute your .emacs with this long custom value. Index: gnus-sum.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/gnus-sum.el,v retrieving revision 6.350 diff -u -p -u -w -r6.350 gnus-sum.el --- gnus-sum.el 16 May 2003 16:06:14 -0000 6.350 +++ gnus-sum.el 23 May 2003 09:23:51 -0000 @@ -902,12 +902,6 @@ automatically when it is selected." (defcustom gnus-summary-highlight '(((eq mark gnus-canceled-mark) . gnus-summary-cancelled-face) - ((and uncached (> score default-high)) - . gnus-summary-high-undownloaded-face) - ((and uncached (< score default-low)) - . gnus-summary-low-undownloaded-face) - (uncached - . gnus-summary-normal-undownloaded-face) ((and (> score default-high) (or (eq mark gnus-dormant-mark) (eq mark gnus-ticked-mark))) @@ -935,6 +929,12 @@ automatically when it is selected." . gnus-summary-high-read-face) ((< score default-low) . gnus-summary-low-read-face) + ((and uncached (> score default-high)) + . gnus-summary-high-undownloaded-face) + ((and uncached (< score default-low)) + . gnus-summary-low-undownloaded-face) + (uncached + . gnus-summary-normal-undownloaded-face) (t . gnus-summary-normal-read-face)) "*Controls the highlighting of summary buffer lines.