branch: externals/nano-modeline
commit 7663311747a5e901dfc1425bff9fed48bedc4d7f
Author: Nicolas P. Rougier <nicolas.roug...@inria.fr>
Commit: Nicolas P. Rougier <nicolas.roug...@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