diff options
author | Leon Rische <leon.rische@me.com> | 2021-03-07 13:04:59 +0100 |
---|---|---|
committer | Leon Rische <leon.rische@me.com> | 2021-03-07 13:04:59 +0100 |
commit | 7b6518cc0c9e8940cc53b94e3bd8b783094c7a67 (patch) | |
tree | f7cac6647ed31283c5b42902bf61c967dfb658a2 /org-fc.el | |
parent | 711511192c62f6dccc96644dcf0705fda99e753a (diff) |
Replace use of `case` with `cl-case`
Diffstat (limited to 'org-fc.el')
-rw-r--r-- | org-fc.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)))) |