branch: elpa/gnosis commit 3c17c0296a736524fd504a3da06948c76beb9ee7 Author: Thanos Apollo <pub...@thanosapollo.org> Commit: Thanos Apollo <pub...@thanosapollo.org>
Adjust indentation. --- gnosis.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnosis.el b/gnosis.el index ac263a30b6..7f2eb060ba 100644 --- a/gnosis.el +++ b/gnosis.el @@ -2610,7 +2610,8 @@ Skips days where no note was reviewed." if (listp item) collect (mapconcat (lambda (x) (format "%s" x)) item ",") else - collect (replace-regexp-in-string "\n" " " (format "%s" item)))))))) + collect + (replace-regexp-in-string "\n" " " (format "%s" item)))))))) (defun gnosis-dashboard-output-notes (note-ids) "Return NOTE-IDS contents on gnosis dashboard." @@ -2740,7 +2741,8 @@ Skips days where no note was reviewed." "Output contents from deck with ID, formatted for gnosis dashboard." (cl-loop for item in (append (gnosis-select 'name 'decks `(= id ,id) t) - (mapcar 'string-to-number (gnosis-dashboard-deck-note-count id))) + (mapcar 'string-to-number + (gnosis-dashboard-deck-note-count id))) when (listp item) do (cl-remove-if (lambda (x) (and (vectorp x) (zerop (length x)))) item) collect (format "%s" item)))