From 9de5161d4bf8a3a3be2fa91d48667d676233e1a4 Mon Sep 17 00:00:00 2001 From: Konubinix Date: Tue, 28 Apr 2015 08:55:10 +0200 Subject: [PATCH] Fix `org-refresh-category-properties' * lisp/org.el (org-refresh-category-properties): Prevent the `put-text-property' to change the point in order to take into account the CATEGORY keyword property in subtrees also. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index e52bf53..5b1dded 100755 --- a/lisp/org.el +++ b/lisp/org.el @@ -9568,7 +9568,7 @@ The refresh happens only for the current tree (not subtree)." (when (org-at-property-p) (put-text-property (save-excursion (org-back-to-heading t) (point)) - (org-end-of-subtree t t) + (save-excursion (org-end-of-subtree t t) (point)) 'org-category value))))))))) -- 2.1.4