aboutsummaryrefslogtreecommitdiff
path: root/tests/test-integration-org-agenda-frame-load-order.el
Commit message (Collapse)AuthorAgeFilesLines
* fix(agenda-frame): keep the allowlist when org-agenda loads firstCraig Jennings3 days1-0/+80
- The read-only shadow walk keeps a key only when the frame map binds it commandp. - It ran from with-eval-after-load partway up the file. - The day/week/redo handlers are defined further down. - With org-agenda already loaded, the walk fired before those defuns existed. - So it read them as non-commands and denied d/w/g/r — the keys the allowlist grants. - That is the normal startup order and every module reload. - Moved the walk to the end of the file, after all the handlers are defined. - A subprocess test loads org-agenda first and pins d/w/g/r surviving, t denied. - Retitled the t-test to assert the deny outcome, not the pre-walk unbound state.