aboutsummaryrefslogtreecommitdiff
path: root/chime.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-05 04:57:33 -0500
committerCraig Jennings <c@cjennings.net>2026-05-05 04:57:33 -0500
commit8ac0dcdade83e791f2daf9720839e1b603d898b2 (patch)
tree45bb738d3c6c9863335be86e8a5046cfbb190a67 /chime.el
parent4d3f8fa2b0f08fb9e67cd17240d0d6b93cb86f5f (diff)
downloadchime-8ac0dcdade83e791f2daf9720839e1b603d898b2.tar.gz
chime-8ac0dcdade83e791f2daf9720839e1b603d898b2.zip
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.
Diffstat (limited to 'chime.el')
-rw-r--r--chime.el3
1 files changed, 1 insertions, 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 ()