From 275905ed8d5492c3b570dc6f8482d570baa1ef82 Mon Sep 17 00:00:00 2001 From: Matt Lundin Date: Sat, 7 Apr 2012 07:13:55 -0500 Subject: [PATCH] Fix hook docstring to reflect renaming of state to org-state. * lisp/org.el: (org-after-todo-state-change-hook): Fix docstring to reflect name change of state to org-state. The renamed variable can cause user hooks added to org-after-todo-state-change-hook to break, so it is essential to have the correct variable name in the docstring. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 77621628f..b412b0af2 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -2225,7 +2225,7 @@ property and include the word \"recursive\" into the value." (defcustom org-after-todo-state-change-hook nil "Hook which is run after the state of a TODO item was changed. The new state (a string with a TODO keyword, or nil) is available in the -Lisp variable `state'." +Lisp variable `org-state'." :group 'org-todo :type 'hook) -- 2.11.4.GIT