From 7e2b9f3dde23d5cf14a2fc19aa42b44a05c2ef9a Mon Sep 17 00:00:00 2001 From: Jonathan Lamothe Date: Mon, 12 May 2025 16:14:19 -0400 Subject: [PATCH] variable rename --- pivot-table.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pivot-table.el b/pivot-table.el index 0780d58..73898a1 100644 --- a/pivot-table.el +++ b/pivot-table.el @@ -40,10 +40,10 @@ TODO: more documentation" (dolist (record src-body) (pt--process-record record source-cols buckets)))) -(defun pt-get-columns (source) +(defun pt-get-columns (table) "Extract the column names from a table" (let (result) - (dolist (row source) + (dolist (row table) (when (and (listp row) (equal (car row) "!")) (let ((n 2)) (dolist (cell (cdr row))