Inhibit lisp evaluation when properties with inactive timestamps value
are processed using lisp functions in the :cols argument
---
lisp/org-collector.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lisp/org-collector.el b/lisp/org-collector.el
index ce3a937..8c3e6ef 100644
--- a/lisp/org-collector.el
+++ b/lisp/org-collector.el
@@ -187,7 +187,8 @@ variables and values specified in props"
(header-props
(mapcar (lambda (props)
(mapcar (lambda (pair)
- (let ((inhibit-lisp-eval (string= (car pair) "ITEM")))
+ (let ((inhibit-lisp-eval (or (string= (car pair) "ITEM")
+ (string-match-p
org-ts-regexp-inactive (cdr pair)))))
(cons (car pair) (org-babel-read (cdr pair)
inhibit-lisp-eval))))
props))
header-props)))
--
2.39.2
Hi Pedro,
Pedro <pedro@cas.cat> writes:
> Inhibit lisp evaluation when properties with inactive timestamps value
> are processed using lisp functions in the :cols argument
Applied, thanks!
--
Bastien Guerry