From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Clemente Subject: Re: org-agenda-filter-by-tag doesn't work with custom effort property Date: Thu, 26 Feb 2009 13:03:36 +0100 Message-ID: <87bpsp4d7r.fsf@CPU107.opentrends.net> References: <877i3f6g5v.fsf@CPU107.opentrends.net> <87myca4e36.fsf@CPU107.opentrends.net> <812AB8C2-90A0-48B9-9ACE-AF5D08F06436@uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LceyK-0005Qk-BJ for emacs-orgmode@gnu.org; Thu, 26 Feb 2009 07:04:12 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LceyG-0005QM-4S for emacs-orgmode@gnu.org; Thu, 26 Feb 2009 07:04:11 -0500 Received: from [199.232.76.173] (port=57439 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LceyF-0005QJ-Ti for emacs-orgmode@gnu.org; Thu, 26 Feb 2009 07:04:07 -0500 Received: from mail-fx0-f172.google.com ([209.85.220.172]:60769) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LceyF-00080B-25 for emacs-orgmode@gnu.org; Thu, 26 Feb 2009 07:04:07 -0500 Received: by fxm20 with SMTP id 20so473244fxm.42 for ; Thu, 26 Feb 2009 04:04:05 -0800 (PST) In-Reply-To: <812AB8C2-90A0-48B9-9ACE-AF5D08F06436@uva.nl> (Carsten Dominik's message of "Wed, 25 Feb 2009 19:26:01 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: emacs-orgmode@gnu.org El dc, feb 25 2009, Carsten Dominik va escriure: > > the cdr returns the cdr of a list. That is ofte a list, but it cal also = be an > atom. > > For example: > > (cdr '(a . b)) > > =3D> a > Yes, you're right; I forgot the theory about conses. '(a b) is this: --------- --------- | a | X-+--> | b | X-+--> nil --------- --------- '(a . b) is this: ---------=20=20=20=20 | a | X-+--> b --------- The problem was that I read in org-global-properties' documentation: > List of property/value pairs that can be inherited by any entry. And I thought that =E2=80=9Epairs=E2=80=9C would be '(key value). Maybe it can be precised (like in other documentations): The entries in this list are cons cells where the car is a property name an= d cdr is a string with all possible values separated by spaces. Thanks, Daniel