diff --git a/doc/org.texi b/doc/org.texi index 65c93096d..cb31dd668 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 b0e43809d..1a6696546 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.")