Christian Moe writes: > On 11/1/11 5:58 PM, Eric Schulte wrote: > >>>> so assuming "var" is an accumulating property, then >>>> >>>> #+property: var foo=1 >>>> #+property: var bar=2 >>>> >>>> would result in `org-file-properties' having the following value >>>> >>>> (("var" . "foo=1 bar=1")) > > Given this: > > --- > > > #+property: var foo=1 > #+property: var bar=2 > > * Heading > :PROPERTIES: > :var: foo=3 > :END: > > > --- > > Would it result in (("var" . "foo=3 bar=2"))? > Good catch Christian, I get the following behavior, currently seems the property-block specification overwrites the global property. I'll have to update my patch to append at the subheading level as well.