From 47c92146a9694bc187f4caae02e7bd658ce8aebf Mon Sep 17 00:00:00 2001 From: Fernando Varesi Date: Mon, 11 Jan 2016 13:56:27 -0300 Subject: [PATCH] org-clock.el: Fix column count for :formula % * lisp/org-clock.el (org-clocktable-write-default): Count properties columns when using special :formula % The previous count did not consider properties columns, so the generated formula was incorrect. --- lisp/org-clock.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/org-clock.el b/lisp/org-clock.el index e6ca46666..8e1fca0b5 100644 --- a/lisp/org-clock.el +++ b/lisp/org-clock.el @@ -2646,12 +2646,14 @@ from the dynamic block definition." ((eq formula '%) ;; compute the column where the % numbers need to go (setq pcol (+ 2 + (length properties) (if multifile 1 0) (if level-p 1 0) (if timestamp 1 0) (min maxlevel (or ntcol 100)))) ;; compute the column where the total time is (setq tcol (+ 2 + (length properties) (if multifile 1 0) (if level-p 1 0) (if timestamp 1 0))) -- 2.11.4.GIT