emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org 81c7a2d 23/41: lisp/org-agenda.el: Use "09:00" inst


From: ELPA Syncer
Subject: [elpa] externals/org 81c7a2d 23/41: lisp/org-agenda.el: Use "09:00" instead of " 9:00"
Date: Sun, 16 May 2021 04:57:20 -0400 (EDT)

branch: externals/org
commit 81c7a2dee8e6d0c5e58d0cb4ca97cfc9477ff660
Author: Bastien <bzg@gnu.org>
Commit: Bastien <bzg@gnu.org>

    lisp/org-agenda.el: Use "09:00" instead of " 9:00"
    
    * lisp/org-agenda.el (org-get-time-of-day): Use "09:00" instead
    of " 9:00" when displaying as a string.
    
    This makes the string more readable, especially for users reading
    the agenda with a screen reader.
    
    Reported-by: Sébastien Hinderer
---
 lisp/org-agenda.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 4ed1969..95848ab 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -6995,7 +6995,7 @@ HH:MM."
             (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
                     (mod h1 24) h1))
             (t0 (+ (* 100 h2) m))
-            (t1 (concat (if (>= h1 24) "+" " ")
+            (t1 (concat (if (>= h1 24) "+" "0")
                         (if (and org-agenda-time-leading-zero
                                  (< t0 1000)) "0" "")
                         (if (< t0 100) "0" "")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]