summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2015-01-30 09:52:09 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2015-01-30 09:55:31 +0100
commit31e7634779a6e5806e86bb9f884c34d49dd229ee (patch)
tree9721bbd892f738781d3733f1a270b755fba78c88
parentbc2c7b2fd30e72ee86353ffce5b6338d93a527aa (diff)
downloadorg-mode-31e7634779a6e5806e86bb9f884c34d49dd229ee.tar.gz
Fix special properties list
* lisp/org.el (org-special-properties): Add missing "CATEGORY". * doc/org.texi (Special properties): Remove "NOBLOCKING" as a special property, since it can only be set through a properties drawer. This is a reserved property. Reported-by: Samuel Loury <konubinix@gmail.com> <http://permalink.gmane.org/gmane.emacs.orgmode/94483>
-rw-r--r--doc/org.texi1
-rwxr-xr-xlisp/org.el5
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/org.texi b/doc/org.texi
index 65c9309..cb31dd6 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -5368,7 +5368,6 @@ should not be used as keys in the properties drawer:
@example
ALLTAGS @r{All tags, including inherited ones.}
BLOCKED @r{"t" if task is currently blocked by children or siblings.}
-NOBLOCKING @r{"t" if blocking is disabled for this task.}
CATEGORY @r{The category of an entry.}
CLOCKSUM @r{The sum of CLOCK intervals in the subtree. @code{org-clock-sum}}
@r{must be run first to compute the values in the current buffer.}
diff --git a/lisp/org.el b/lisp/org.el
index b0e4380..1a66965 100755
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -15363,8 +15363,9 @@ a *different* entry, you cannot use these techniques."
;;; Properties API
(defconst org-special-properties
- '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
- "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
+ '("ALLTAGS" "BLOCKED" "CATEGORY" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE"
+ "FILE" "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA"
+ "TODO")
"The special properties valid in Org mode.
These are properties that are not defined in the property drawer,
but in some other way.")