diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-05 04:57:33 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-05 04:57:33 -0500 |
| commit | 8ac0dcdade83e791f2daf9720839e1b603d898b2 (patch) | |
| tree | 45bb738d3c6c9863335be86e8a5046cfbb190a67 | |
| parent | 4d3f8fa2b0f08fb9e67cd17240d0d6b93cb86f5f (diff) | |
| download | chime-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.
| -rw-r--r-- | chime.el | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 () |
