From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/80701 Path: news.gmane.org!not-for-mail From: Manuel Carro Newsgroups: gmane.emacs.gnus.general Subject: Re: Show mark in unread emails Date: Tue, 20 Dec 2011 21:24:08 +0100 Message-ID: <7sfwgfdmaf.fsf@fi.upm.es> References: <87liqck7op.fsf@cica.brc> <7sty4x7a1g.fsf@fi.upm.es> <87ty4xzaai.fsf@windlord.stanford.edu> <7svcpd8i9w.fsf@fi.upm.es> <87mxaozlqu.fsf@topper.koldfront.dk> <7sty4vslzn.fsf@fi.upm.es> <87wr9rzduj.fsf@nzebook.haselwarter.org> <7s4nwvm6to.fsf@fi.upm.es> <87aa6nvzqx.fsf@topper.koldfront.dk> <7s8vm7hx47.fsf@fi.upm.es> <87wr9ruhkc.fsf@topper.koldfront.dk> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1324412678 25281 80.91.229.12 (20 Dec 2011 20:24:38 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 20 Dec 2011 20:24:38 +0000 (UTC) Cc: ding@gnus.org To: asjo@koldfront.dk (Adam =?utf-8?Q?Sj=C3=B8gren?=) Original-X-From: ding-owner+M28983@lists.math.uh.edu Tue Dec 20 21:24:34 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 1Rd6Ei-0006ZS-Lo for ding-account@gmane.org; Tue, 20 Dec 2011 21:24:33 +0100 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 1Rd6Ee-0006BF-1x; Tue, 20 Dec 2011 14:24:28 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Rd6Ed-0006B8-1S for ding@lists.math.uh.edu; Tue, 20 Dec 2011 14:24:27 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1Rd6Eb-0007ui-Lr for ding@lists.math.uh.edu; Tue, 20 Dec 2011 14:24:26 -0600 Original-Received: from relay.fi.upm.es ([138.100.8.77] helo=relay4.fi.upm.es) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1Rd6EL-0002lj-Pf for ding@gnus.org; Tue, 20 Dec 2011 21:24:09 +0100 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by relay4.fi.upm.es (Postfix) with ESMTP id 4AF5730472; Tue, 20 Dec 2011 21:24:09 +0100 (CET) X-Virus-Scanned: by amavisd-new using ClamAV at efiltro.fi.upm.es Original-Received: from mail1.fi.upm.es (mail1.fi.upm.es [138.100.243.142]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by relay4.fi.upm.es (Postfix) with ESMTP id 2F47F30467; Tue, 20 Dec 2011 21:24:09 +0100 (CET) Original-Received: from mcl-laptop (imdea-software.fi.upm.es [138.100.13.220]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail1.fi.upm.es (Postfix) with ESMTP id 196AAAF064B; Tue, 20 Dec 2011 21:24:09 +0100 (CET) In-Reply-To: <87wr9ruhkc.fsf@topper.koldfront.dk> ("Adam =?utf-8?Q?Sj?= =?utf-8?Q?=C3=B8gren=22's?= message of "Tue, 20 Dec 2011 21:14:11 +0100") User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/23.3 (gnu/linux) X-Spam-Score: -7.5 (-------) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:80701 Archived-At: > Yes, Wes Hardaker mentioned setting the display group parameter: > > "You can add a group parameter (G p) to either a group or a topic > such as this one: > > (display . > [and > (not killed) > (not expire)]) > > Which will show everything not killed and not expired, for example." > > * http://article.gmane.org/gmane.emacs.gnus.general/80677 > > In this very thread, actually. > > Couldn't you use that to have the messages you want to appear, appear? I tried it. If I edit (with "Gp") one of my groups and add that as parameter, after "C-cC-c" I get the following error messages: gnus-group-get-parameter: Wrong type argument: listp, [and (not killed) (not expire)] gnus-group-topic-parameters: Wrong type argument: listp, [and (not killed) (not expire)] So I suppose that it's a list what is expected. Therefore I changed it to > (display . > (and > (not killed) > (not expire))) but then I enter the group and nothing happens (i.e., read messages are still hidden). If I go to the parameters (again "Gp") something different appears: what I see is (display and (not killed) (not expire)) which obviously does not have the same meaning. So, yes, I tried to follow that path, but unsuccessfuly so far. Any idea of why the expression Wes Hardaker posted gives me an error message? Best!