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

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

[elpa] externals/nano-modeline 7663311747 04/26: Bugfix with deadline da


From: ELPA Syncer
Subject: [elpa] externals/nano-modeline 7663311747 04/26: Bugfix with deadline date
Date: Fri, 2 Jun 2023 03:59:06 -0400 (EDT)

branch: externals/nano-modeline
commit 7663311747a5e901dfc1425bff9fed48bedc4d7f
Author: Nicolas P. Rougier <Nicolas.Rougier@inria.fr>
Commit: Nicolas P. Rougier <Nicolas.Rougier@inria.fr>

    Bugfix with deadline date
---
 nano-modeline.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nano-modeline.el b/nano-modeline.el
index 0571138be9..bcdb2281f4 100644
--- a/nano-modeline.el
+++ b/nano-modeline.el
@@ -358,8 +358,8 @@ made DEFAULT."
 (defun nano-modeline-org-agenda-date (&optional format)
   "Date at point in org agenda  using given FORMAT"
 
-  (when-let* ((day (or (org-get-at-bol 'day)
-                       (org-get-at-bol 'ts-date)))
+  (when-let* ((day (or (org-get-at-bol 'ts-date)
+                       (org-get-at-bol 'day)))
               (date (calendar-gregorian-from-absolute day))
               (day (nth 1 date))
               (month (nth 0 date))



reply via email to

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