From f70eb7d2e856f06200847b2c3c86b6e3e5d846eb Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 18 Feb 2017 20:22:30 +0100 Subject: [PATCH] org-clock: Fix missing properties in Clock table * lisp/org-clock.el (org-clocktable-write-default): Do not ignore properties specified by :properties parameter. * testing/lisp/test-org-clock.el (test-org-clock/clocktable/properties): New test. The regression was introduced in b897ab722. Reported-by: Dale --- lisp/org-clock.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-clock.el b/lisp/org-clock.el index 5952ff672..3a67d2df6 100644 --- a/lisp/org-clock.el +++ b/lisp/org-clock.el @@ -2592,7 +2592,7 @@ from the dynamic block definition." ;; Get the list of node entries and iterate over it (when (> maxlevel 0) - (pcase-dolist (`(,level ,headline ,ts ,time . ,props) entries) + (pcase-dolist (`(,level ,headline ,ts ,time ,props) entries) (when narrow-cut-p (setq headline (if (and (string-match -- 2.11.4.GIT