From f253c63db3f4e54131cc764c0af1221ce0d67b13 Mon Sep 17 00:00:00 2001 From: Jonathan Lamothe Date: Mon, 12 May 2025 10:15:17 -0400 Subject: [PATCH] minor stylistic change --- pivot-table.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pivot-table.el b/pivot-table.el index 3f7bdb2..0780d58 100644 --- a/pivot-table.el +++ b/pivot-table.el @@ -44,7 +44,7 @@ TODO: more documentation" "Extract the column names from a table" (let (result) (dolist (row source) - (when (and (listp row) (equal "!" (car row))) + (when (and (listp row) (equal (car row) "!")) (let ((n 2)) (dolist (cell (cdr row)) (unless (equal cell "")