From 0885c3b64843f37356f920d671bc461ef8cc4057 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 6 Jul 2020 17:13:02 +0200 Subject: [PATCH] Add missing Org Mode state trigger for empty keyword Then a project is set on hold, the HOLD keyword is added. When reverting the hold state, projects go back to not having a keyword. In this case, the HOLD tag remains, because the old trigger definition was missing a case for the empty keyword. This is now fixed. --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 8b78a8a..e68502a 100644 --- a/init.el +++ b/init.el @@ -765,7 +765,8 @@ With given ARG, display files in `db/important-document-path’." ("READ" ("READ" . t) ("HOLD") ("WAIT")) ("GOTO" ("DATE" . t) ("HOLD") ("WAIT")) ("CONT" ("HOLD") ("WAIT")) - ("ATTN" ("HOLD") ("WAIT"))) + ("ATTN" ("HOLD") ("WAIT")) + ("" ("HOLD") ("WAIT") ("DATE") ("READ"))) org-tag-alist '((:startgroup . nil)