From b7932063a0a8170eb9b0326c35c20f4495f5c8d9 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Thu, 8 Aug 2019 08:30:53 -0500 Subject: [PATCH] Fix: (org-ql-agenda--format-element) Extra indentation --- org-ql-agenda.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-ql-agenda.el b/org-ql-agenda.el index 0560edc..79dda2e 100644 --- a/org-ql-agenda.el +++ b/org-ql-agenda.el @@ -352,7 +352,7 @@ Its property list should be the second item in the list, as returned by `org-ele (due-string (pcase (org-element-property :relative-due-date element) ('nil "") (string (format " %s " (org-add-props string nil 'face 'underline))))) - (string (s-join " " (list todo-keyword priority-string title due-string tag-string)))) + (string (s-join " " (-non-nil (list todo-keyword priority-string title due-string tag-string))))) (remove-list-of-text-properties 0 (length string) '(line-prefix) string) ;; Add all the necessary properties and faces to the whole string (--> string