branch: externals/org
commit 2d78ea57cfad1ddc3e993c949daf117b76315170
Merge: 196aae4 e1b8d1d
Author: Nicolas Goaziou <m...@nicolasgoaziou.fr>
Commit: Nicolas Goaziou <m...@nicolasgoaziou.fr>

    Merge branch 'maint'
---
 lisp/org-colview.el | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/lisp/org-colview.el b/lisp/org-colview.el
index 75056d4..d80fa8e 100644
--- a/lisp/org-colview.el
+++ b/lisp/org-colview.el
@@ -1167,7 +1167,12 @@ properties drawers."
         (printf (nth 4 spec))
         (operator (nth 3 spec))
         (collect (and operator (org-columns--collect operator)))
-        (summarize (and operator (org-columns--summarize operator))))
+        (summarize (and operator (org-columns--summarize operator)))
+         ;; Special properties are not set in a property drawer, and
+         ;; therefore should not be updated.
+         (update
+          (and update
+               (not (member property org-special-properties)))))
     (org-with-wide-buffer
      ;; Find the region to compute.
      (goto-char org-columns-top-level-marker)

Reply via email to