Fix: (org-ql-agenda--format-element) Extra indentation

This commit is contained in:
Adam Porter 2019-08-08 08:30:53 -05:00
parent c4531b25a4
commit b7932063a0

View file

@ -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) (due-string (pcase (org-element-property :relative-due-date element)
('nil "") ('nil "")
(string (format " %s " (org-add-props string nil 'face 'underline))))) (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) (remove-list-of-text-properties 0 (length string) '(line-prefix) string)
;; Add all the necessary properties and faces to the whole string ;; Add all the necessary properties and faces to the whole string
(--> string (--> string