emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] org-agenda-filter-by-tag doesn't work with custom effort p


From: Daniel Clemente
Subject: Re: [Orgmode] org-agenda-filter-by-tag doesn't work with custom effort property
Date: Thu, 26 Feb 2009 13:03:36 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.90 (gnu/linux)

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))
>
>    => a
>

  Yes, you're right; I forgot the theory about conses.


'(a b) is this:

---------    ---------
| a | X-+--> | b | X-+--> nil
---------    ---------


'(a . b) is this:

---------    
| 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 „pairs“ 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 and 
cdr is a string with all possible values separated by spaces.


   Thanks,

Daniel




reply via email to

[Prev in Thread] Current Thread [Next in Thread]