branch: externals/tmr commit c7e0f6f11865afb5a62d6462656d84a1b0427019 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
tmr: tweak message for completed tmr --- tmr.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tmr.el b/tmr.el index ef613f3fb6..e698cda16a 100644 --- a/tmr.el +++ b/tmr.el @@ -200,11 +200,12 @@ optional `tmr--timer-description'." (let ((start (tmr--format-creation-date timer)) (end (tmr--format-end-date timer)) (description (tmr--timer-description timer))) - (format "Time is up!\n%s%s %s\n%s %s" + ;; For the TMR prefix, see comment in `tmr--long-description'. + (format "TMR Time is up!\n%s%s %s\n%s %s" (if description (format "%s\n" description) "") (propertize "Started" 'face 'success) start - (propertize "Ended" 'face 'success) + (propertize "Ended" 'face 'error) end))) (defun tmr--format-creation-date (timer)