Don't reset `org-done-keywords-for-agenda' when org-agenda-multi
* org-agenda.el (org-prepare-agenda): Don't reset `org-done-keywords-for-agenda' when org-agenda-multi. Fixes a bug with DONE keywords in org-todo face reported by Hans-Peter Deifel in <87r4xwypxh.fsf@hpdeifel.de>.
This commit is contained in:
parent
54ead894de
commit
cd2d138883
|
@ -3073,7 +3073,6 @@ the global options and expect it to be applied to the entire view.")
|
|||
|
||||
(defun org-prepare-agenda (&optional name)
|
||||
(setq org-todo-keywords-for-agenda nil)
|
||||
(setq org-done-keywords-for-agenda nil)
|
||||
(setq org-drawers-for-agenda nil)
|
||||
(unless org-agenda-persistent-filter
|
||||
(setq org-agenda-tag-filter nil
|
||||
|
@ -3092,6 +3091,7 @@ the global options and expect it to be applied to the entire view.")
|
|||
(make-string (window-width) org-agenda-block-separator))
|
||||
"\n"))
|
||||
(narrow-to-region (point) (point-max)))
|
||||
(setq org-done-keywords-for-agenda nil)
|
||||
(org-agenda-reset-markers)
|
||||
(setq org-agenda-contributing-files nil)
|
||||
(setq org-agenda-columns-active nil)
|
||||
|
|
Loading…
Reference in New Issue