diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-12-08 06:51:56 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-12-08 06:51:56 +0000 |
commit | be2539ca8c2d8c1ba8f8ac6fadf208971772686a (patch) | |
tree | db59a51186bffe3b7e32ddb2f728c75aac811e77 | |
parent | c5272bd05768cc047c3eff652788aecae276f700 (diff) |
added comment about fixing conditional
Diffstat (limited to '')
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -277,7 +277,7 @@ Restart works only on graphic display." "Create an entry tagged 'journal' with the date as its title." (interactive) (let* ((today-journal (mapcar #'mrl/is-todays-journal? (directory-files (denote-directory) nil "_journal"))) - (journal (if (> (length today-journal) 1) + (journal (if (> (length today-journal) 1) ; need to apply the -non-nil LIST func here to remove nils (car (cdr today-journal)) nil))) (if journal |