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.
This commit is contained in:
Matt Lundin 2012-04-07 07:13:55 -05:00 committed by Bastien Guerry
parent 8dda2fc1ee
commit 275905ed8d
1 changed files with 1 additions and 1 deletions

View File

@ -2225,7 +2225,7 @@ property and include the word \"recursive\" into the value."
(defcustom org-after-todo-state-change-hook nil (defcustom org-after-todo-state-change-hook nil
"Hook which is run after the state of a TODO item was changed. "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 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 :group 'org-todo
:type 'hook) :type 'hook)