summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-05-14 16:07:21 +0200
committerBastien Guerry <bzg@altern.org>2013-05-14 16:07:21 +0200
commit2ae3e91076177b84f9f8875ac23f4ba2a7fcde97 (patch)
tree3109c3ec3ab9e27b181605e09f783dfd08953cff
parentbc1e3e18c9975f2befd3abc8bf43b2ad7381189c (diff)
downloadorg-mode-2ae3e91076177b84f9f8875ac23f4ba2a7fcde97.tar.gz
org.el (org-refresh-properties): Put the text property on the whole subtree, not just on the headlinerelease_8.0.3
* org.el (org-refresh-properties): Put the text property on the whole subtree, not just on the headline. Thanks to Ivan Kanis for reporting this and to Miguel Ruiz for confirming the bug.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 7420d10..c0dc9d9 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -9243,7 +9243,7 @@ property to set."
(save-excursion
(org-back-to-heading t)
(put-text-property
- (point-at-bol) (point-at-eol) tprop p))))))))
+ (point-at-bol) (org-end-of-subtree t t) tprop p))))))))
;;;; Link Stuff