summaryrefslogtreecommitdiff
path: root/org-fc-cache.el
diff options
context:
space:
mode:
authorLeon Rische <leon.rische@me.com>2021-03-07 16:20:11 +0100
committerLeon Rische <leon.rische@me.com>2021-03-07 16:20:11 +0100
commit38412f4a2fe4d05fbb5a790e778b233438d6c840 (patch)
treeebfe2cb40f49a8d51ca1700d787b04f6e7f58028 /org-fc-cache.el
parent9783e5afda52e2e4d9634c7ca4cdee69f806210d (diff)
Fix remaining compiler warnings
Diffstat (limited to 'org-fc-cache.el')
-rw-r--r--org-fc-cache.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/org-fc-cache.el b/org-fc-cache.el
index 83fee37..9168bd6 100644
--- a/org-fc-cache.el
+++ b/org-fc-cache.el
@@ -32,7 +32,11 @@
;;; Code:
+(require 'parse-time)
+
(require 'org-fc-core)
+(require 'org-fc-awk)
+(require 'org-fc-review)
;;; Queue / Processing of Files
@@ -163,7 +167,7 @@ This is especially relevant w.r.t a card's due date / suspension state before re
(if (org-fc-suspended-entry-p)
(error "Trying to review a suspended card"))
(let* ((position (plist-get cur :position))
- (review-data (org-fc-get-review-data))
+ (review-data (org-fc-review-data-get))
(row (assoc position review-data #'string=))
(due (parse-iso8601-time-string (nth 4 row))))
(unless (time-less-p due (current-time))