branch: externals/listen commit 1b6bc520354d2f26fed6c9da7771dd5f04703dfc Author: Adam Porter <a...@alphapapa.net> Commit: Adam Porter <a...@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