summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Lundin <mdl@imapmail.org>2012-04-07 07:13:55 -0500
committerBastien Guerry <bzg@altern.org>2012-04-09 16:57:11 +0200
commit275905ed8d5492c3b570dc6f8482d570baa1ef82 (patch)
treef1028cb5b2160d23e73c426e3b0a024d98df9a24
parent8dda2fc1eec75b9fe21bc796dca31747795a7475 (diff)
downloadorg-mode-275905ed8d5492c3b570dc6f8482d570baa1ef82.tar.gz
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.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 7762162..b412b0a 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)