From b2a232286dec173ae0c8f7664da9e439b59830a8 Mon Sep 17 00:00:00 2001 From: Marco Wahl Date: Fri, 27 Jan 2017 19:28:19 +0100 Subject: [PATCH] Revert "Fix `org-refresh-property'" This reverts commit 2132c008d688ab28e2240581e64760e860a029d7. --- lisp/org.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 386e171fc..3ef837890 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -9677,8 +9677,8 @@ sub-tree if optional argument INHERIT is non-nil." ;; TPROP is a text property symbol. (put-text-property start end tprop p) ;; TPROP is an alist with (property . function) elements. - (pcase-dolist (`(,prop . ,f) tprop) - (put-text-property start end prop (funcall f p)))))))) + (pcase-dolist (`(,p . ,f) tprop) + (put-text-property start end p (funcall f p)))))))) (defun org-refresh-category-properties () "Refresh category text properties in the buffer." -- 2.11.4.GIT