summaryrefslogtreecommitdiff
path: root/org-fc.el
diff options
context:
space:
mode:
authorLeon Rische <leon.rische@me.com>2020-06-02 12:50:01 +0200
committerLeon Rische <leon.rische@me.com>2020-06-02 12:50:01 +0200
commit0516e93078f11dadf49111b6f6e8ebadf6053fb0 (patch)
treef0f79f8efcda9cd56b2b94567e8b4aaad998090b /org-fc.el
parent6f9642a2c9f76037d1344616e77d3ebf2fb6ca81 (diff)
Add `cl-` prefix to `remove-if-not`
Diffstat (limited to 'org-fc.el')
-rw-r--r--org-fc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/org-fc.el b/org-fc.el
index 1789358..1f7bb35 100644
--- a/org-fc.el
+++ b/org-fc.el
@@ -1374,7 +1374,7 @@ Cards with no positions are removed from the index."
(dolist (card index)
(unless (plist-get card :suspended)
(let ((due
- (remove-if-not
+ (cl-remove-if-not
(lambda (pos)
(time-less-p (plist-get pos :due) now))
(plist-get card :positions))))