From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/79376 Path: news.gmane.org!not-for-mail From: lee Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus Questions #1: Article Expiry Date: Wed, 06 Jul 2011 00:46:37 +0200 Organization: my virtual residence Message-ID: <87tyb0wdki.fsf@yun.yagibdah.de> References: <87sjqm15mp.fsf@yun.yagibdah.de> <8739ikxup1.fsf@yun.yagibdah.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1309906015 22559 80.91.229.12 (5 Jul 2011 22:46:55 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 5 Jul 2011 22:46:55 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M27672@lists.math.uh.edu Wed Jul 06 00:46:51 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QeEOI-000504-WE for ding-account@gmane.org; Wed, 06 Jul 2011 00:46:51 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1QeEO9-0007H9-Tn; Tue, 05 Jul 2011 17:46:41 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1QeEO8-0007Gw-Ev for ding@lists.math.uh.edu; Tue, 05 Jul 2011 17:46:40 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1QeEO7-00028r-Mx for ding@lists.math.uh.edu; Tue, 05 Jul 2011 17:46:40 -0500 Original-Received: from static.103.179.46.78.clients.your-server.de ([78.46.179.103] helo=static.73.179.46.78.clients.your-server.de) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1QeEO6-0007pb-4F for ding@gnus.org; Wed, 06 Jul 2011 00:46:38 +0200 Original-Received: from lee by yun.yagibdah.de with local (Exim 4.76) (envelope-from ) id 1QeEO5-0002S3-KQ for ding@gnus.org; Wed, 06 Jul 2011 00:46:37 +0200 Mail-Followup-To: ding@gnus.org In-Reply-To: <8739ikxup1.fsf@yun.yagibdah.de> (lee@yun.yagibdah.de's message of "Tue, 05 Jul 2011 23:51:22 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) X-Spam-Score: 0.1 (/) X-Spam-Report: SpamAssassin (3.3.1 2010-03-16) analysis follows Bayesian score: 0.0011 Ham tokens: 0.000-1690--6822h-0s--0d--H*UA:Emacs, 0.000-1523--6148h-0s--0d--H*u:Emacs, 0.000-1410--5693h-0s--0d--H*UA:Gnus, 0.000-1410--5692h-0s--0d--H*u:Gnus, 0.000-1353--5462h-0s--0d--H*u:linux Spam tokens: 0.998-1--0h-6s--0d--HX-Spam-Relays-External:sk:static., 0.998-1--0h-6s--0d--H*RU:sk:static., 0.966-5731--1375h-53100s--0d--H*r:quimby.gnus.org, 0.912-190--212h-2999s--0d--H*r:sk:static., 0.906-3081--4059h-53352s--0d--HX-Spam-Relays-External:quimby.gnus.org Autolearn status: no -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0011] 2.0 HELO_DYNAMIC_IPADDR Relay HELO'd using suspicious hostname (IP addr 1) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:79376 Archived-At: lee writes: >> Well, you can customize the summary line format almost infinitely and >> use your own marks. That's what I meant by "replacing the display of >> those marks in my summary line with something more semantically >> useful." Ah, it goes like this: (defun gnus-user-format-function-M (header) (if (equal gnus-tmp-unread gnus-ancient-mark) ; then (make-string 1 ?a) ; else (make-string 1 ?-) ) ) ... which uses the %u specifier of gnus-summary-line-format. This is probably a very stupid way of making a function return a string; I just don't know better yet ... At least it shows that the marks are available and how to make them visible :)