From 07f657de3578673485f521eb9ff21a4d0da2b6d8 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 5 Dec 2014 12:15:51 -0800 Subject: [PATCH] fix org-enforce-todo-dependencies (its not a function, but a variable) --- dotfiles/emacs.d/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 146d259e..99993e7a 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -600,7 +600,7 @@ The current directory is assumed to be the project's root otherwise." (unless (boundp 'org-capture-templates) (defvar org-capture-templates nil)) (setq org-completion-use-ido t) - (org-enforce-todo-dependencies t) + (setq org-enforce-todo-dependencies t) (setq org-agenda-files (list org-gtd-file org-habits-file org-projects-file)) (add-to-list 'org-capture-templates `("h" "Habit" entry (file+headline ,org-habits-file "Habits")