[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/listen 1b6bc52035 3/4: Change: (listen-format-seconds)
From: |
ELPA Syncer |
Subject: |
[elpa] externals/listen 1b6bc52035 3/4: Change: (listen-format-seconds) Allow using 1 digit for minutes |
Date: |
Mon, 9 Sep 2024 06:58:34 -0400 (EDT) |
branch: externals/listen
commit 1b6bc520354d2f26fed6c9da7771dd5f04703dfc
Author: Adam Porter <adam@alphapapa.net>
Commit: Adam Porter <adam@alphapapa.net>
Change: (listen-format-seconds) Allow using 1 digit for minutes
---
listen-lib.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/listen-lib.el b/listen-lib.el
index 85d400f09e..1253e5b486 100644
--- a/listen-lib.el
+++ b/listen-lib.el
@@ -154,7 +154,7 @@ return a list of values; otherwise return the sole value."
(defun listen-format-seconds (seconds)
"Return SECONDS formatted as an hour:minute:second-style duration."
- (format-seconds "%h:%z%.2m:%.2s" seconds))
+ (format-seconds "%h:%z%m:%.2s" seconds))
;;;; Methods