Fix: (org-dblock-write:org-ql) Rename unused variables

This commit is contained in:
Adam Porter 2020-11-13 02:45:45 -06:00
parent f8b41ea027
commit 51f987c6b8

View file

@ -310,9 +310,9 @@ For example, an org-ql dynamic block header could look like:
collect (or (pcase-exhaustive column collect (or (pcase-exhaustive column
((pred symbolp) ((pred symbolp)
(funcall (alist-get column format-fns) element)) (funcall (alist-get column format-fns) element))
(`((,column . ,args) ,header) (`((,column . ,args) ,_header)
(apply (alist-get column format-fns) element args)) (apply (alist-get column format-fns) element args))
(`(,column ,header) (`(,column ,_header)
(funcall (alist-get column format-fns) element))) (funcall (alist-get column format-fns) element)))
"")) ""))
" | "))) " | ")))