From 2ae3e91076177b84f9f8875ac23f4ba2a7fcde97 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 14 May 2013 16:07:21 +0200 Subject: [PATCH] org.el (org-refresh-properties): Put the text property on the whole subtree, not just on the headline * 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. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 7420d10b7..c0dc9d9af 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 -- 2.11.4.GIT