summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-04-02 23:05:06 +0200
committerBastien Guerry <bzg@altern.org>2012-04-03 09:43:20 +0200
commitbbfd7881be2b77ee00393cd78121ea8ae2dc4cdb (patch)
treea4d5ab345f4d377cadb619f735fda9af20d60e75
parent60b6f60dfefc063c7af9c6a3f168cb9c323d525b (diff)
downloadorg-mode-bbfd7881be2b77ee00393cd78121ea8ae2dc4cdb.tar.gz
org.el (org-todo): Fix regression: rename `state' to `org-state'.
* org.el (org-todo): Fix regression: rename `state' to `org-state'.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index b1c15fb..244bffd 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -11380,7 +11380,7 @@ For calling through lisp, arg is also interpreted in the following way:
;; It is now done, and it was not done before
(org-add-planning-info 'closed (org-current-effective-time))
(if (and (not dolog) (eq 'note org-log-done))
- (org-add-log-setup 'done state this 'findpos 'note)))
+ (org-add-log-setup 'done org-state this 'findpos 'note)))
(when (and org-state dolog)
;; This is a non-nil state, and we need to log it
(org-add-log-setup 'state org-state this 'findpos dolog)))