At Mon, 29 Oct 2012 17:07:23 +0100, Sebastien Vauban wrote: > > Hello Erik and Bastien, > > […] > > I share your point... > > But do we all agree that your original example had to fail when > LOG_INTO_DRAWER is not inherited?[1] > > Or do I miss some point? > > Seb Hi Sebastien, Yes, I had a bad example. But the function org-log-into-drawer would not work (before my patch) on the following example either: * TODO Foo :PROPERTIES: :LOG_INTO_DRAWER: nil :END: The issue was with the distinction between the value nil and string "nil". org-entry-get (without an additional arg) will return the value nil in the above example, which meant that the value of org-log-into-drawer (t) was not being overidden. best, Erik