diff options
author | Leon Rische <leon.rische@me.com> | 2021-03-07 16:20:11 +0100 |
---|---|---|
committer | Leon Rische <leon.rische@me.com> | 2021-03-07 16:20:11 +0100 |
commit | 38412f4a2fe4d05fbb5a790e778b233438d6c840 (patch) | |
tree | ebfe2cb40f49a8d51ca1700d787b04f6e7f58028 /org-fc-awk.el | |
parent | 9783e5afda52e2e4d9634c7ca4cdee69f806210d (diff) |
Fix remaining compiler warnings
Diffstat (limited to 'org-fc-awk.el')
-rw-r--r-- | org-fc-awk.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/org-fc-awk.el b/org-fc-awk.el index 444352a..951c1a6 100644 --- a/org-fc-awk.el +++ b/org-fc-awk.el @@ -103,9 +103,9 @@ ITAGS and LTAGS are strings `\":tag1:tag2:\"'" FILTER can be either nil or a function taking a single card as its input." (let ((index (org-fc-awk-index-paths paths))) - (if filter - (cl-remove-if-not filter index) - index))) + (if filter + (cl-remove-if-not filter index) + index))) (defun org-fc-awk-index-paths (paths) "Generate a list of all cards and positions in PATHS." |