From 8ac0dcdade83e791f2daf9720839e1b603d898b2 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Tue, 5 May 2026 04:57:33 -0500 Subject: fix: remove unused `title` lexical in chime--process-notifications `make compile' flagged it. The variable was bound but never referenced in the bundled-notification branch, so I dropped the `let' binding. Whether the bundled notification should actually carry that title is a separate concern, not this fix. --- chime.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/chime.el b/chime.el index a9b6d9a..bb93153 100644 --- a/chime.el +++ b/chime.el @@ -1732,8 +1732,7 @@ Handles both regular event notifications and day-wide alerts." (chime--notify (car day-wide)) ;; Multiple events: bundle into one notification, one sound (let* ((messages (mapcar #'car day-wide)) - (body (mapconcat #'identity messages "\n")) - (title (format "%d day-wide events" (length day-wide)))) + (body (mapconcat #'identity messages "\n"))) (chime--notify (cons body 'medium)))))))) (defun chime--maybe-warn-persistent-failures () -- cgit v1.2.3