Matthew Lundin <m...@imapmail.org> writes: > Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: > >> Matt Lundin <m...@imapmail.org> writes: >> >>> All drawers default to open at startup except for property drawers. This >>> includes :LOGBOOK: drawers, which can be quite long and block view of an >>> entry. >> >> I think all drawers are opened at startup, including property drawers. >> >>> I ran a git bisect and discovered that the bug was introduced with >>> commit 8b05c06d427e850d45684f69c5165cd7684e1071 on May 9. >> >> Isn't it related to 88f5ed91c5cf9cb6962c1b441eac7dbab9a4734e instead? >> > No. I have the following in my emacs file: > > (setq org-startup-folded t) >
I did some more investigating and it seems my initial git bisect was off by one commit. (I think I forgot to reload org files on the last bisect.) The commit that introduced this bug was 1027e0256903bc2c4ef9edfb1f7279294fa3f195. In the function org-set-startup-visibility, that commit replaced (org-cycle-hide-drawers 'all) with (org-cycle-hide-property-drawers 'all) Thus, only property drawers are hidden at startup. Best, Matt