summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Kampas <martin.kampas@ubedi.net>2020-10-19 07:29:05 +0200
committerKyle Meyer <kyle@kyleam.com>2020-10-20 00:35:11 -0400
commit90b14cb409adbd5529b8bbef32ad5239e5c85404 (patch)
tree57daa8ef38c250f83804999be6256b701f613423
parent2d1e2606e7bad92655ad5ddd207fc14bbaed7e5d (diff)
downloadorg-mode-90b14cb409adbd5529b8bbef32ad5239e5c85404.tar.gz
org-colview: Fix done keywords highlighting in agenda buffers
* lisp/org-colview.el (org-agenda-columns): Populate org-done-keywords from org-done-keywords-for-agenda or the done keywords will use the same face as those not-done. TINYCHANGE
-rw-r--r--lisp/org-colview.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/org-colview.el b/lisp/org-colview.el
index e50a4d7..565bdb2 100644
--- a/lisp/org-colview.el
+++ b/lisp/org-colview.el
@@ -1586,6 +1586,7 @@ PARAMS is a property list of parameters:
(move-marker org-columns-begin-marker (point))
(setq org-columns-begin-marker (point-marker)))
(let* ((org-columns--time (float-time))
+ (org-done-keywords org-done-keywords-for-agenda)
(fmt
(cond
((bound-and-true-p org-overriding-columns-format))