From 01362ff804c6389dc4046144b561f70e17d288c6 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 4 Jul 2020 14:02:06 +0200 Subject: [PATCH] Fix org state triggers for WAIT and HOLD todo states The definition for general todo keywords overwrote the definition for WAIT and HOLD, thus the corresponding tags where not set automatically. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 4efa22d..e869abd 100644 --- a/init.el +++ b/init.el @@ -759,7 +759,7 @@ With given ARG, display files in `db/important-document-path’." '(("WAIT" ("HOLD") ("WAIT" . t)) ("HOLD" ("HOLD" . t) ("WAIT")) (done ("HOLD") ("WAIT")) - (todo ("HOLD") ("WAIT") ("DATE") ("READ")) + (todo ("DATE") ("READ")) ("READ" ("READ" . t) ("HOLD") ("WAIT")) ("GOTO" ("DATE" . t) ("HOLD") ("WAIT")) ("CONT" ("HOLD") ("WAIT"))