summaryrefslogtreecommitdiff
path: root/org-fc.el
diff options
context:
space:
mode:
authorLeon Rische <leon.rische@me.com>2021-03-07 13:04:59 +0100
committerLeon Rische <leon.rische@me.com>2021-03-07 13:04:59 +0100
commit7b6518cc0c9e8940cc53b94e3bd8b783094c7a67 (patch)
treef7cac6647ed31283c5b42902bf61c967dfb658a2 /org-fc.el
parent711511192c62f6dccc96644dcf0705fda99e753a (diff)
Replace use of `case` with `cl-case`
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 8731e61..2c55798 100644
--- a/org-fc.el
+++ b/org-fc.el
@@ -1013,7 +1013,7 @@ END is the start of the line with :END: on it."
(defun org-fc-review-data-default (position)
"Default review data for position POSITION."
- (case org-fc-algorithm
+ (cl-case org-fc-algorithm
('sm2-v1 (org-fc-algo-sm2-initial-review-data position))
('sm2-v2 (org-fc-algo-sm2-initial-review-data position))))