variable rename

This commit is contained in:
2025-05-12 16:14:19 -04:00
parent f253c63db3
commit 7e2b9f3dde

View File

@@ -40,10 +40,10 @@ TODO: more documentation"
(dolist (record src-body) (dolist (record src-body)
(pt--process-record record source-cols buckets)))) (pt--process-record record source-cols buckets))))
(defun pt-get-columns (source) (defun pt-get-columns (table)
"Extract the column names from a table" "Extract the column names from a table"
(let (result) (let (result)
(dolist (row source) (dolist (row table)
(when (and (listp row) (equal (car row) "!")) (when (and (listp row) (equal (car row) "!"))
(let ((n 2)) (let ((n 2))
(dolist (cell (cdr row)) (dolist (cell (cdr row))