From bd32149e1100be781818f1f7bc9425b901c2f7ca Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Wed, 24 Apr 2024 23:49:31 +0200 Subject: org-fc-review: take first ordered card: memorization optimization --- org-fc-review.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-fc-review.el b/org-fc-review.el index 45d444b..ef3f679 100644 --- a/org-fc-review.el +++ b/org-fc-review.el @@ -104,7 +104,7 @@ Valid contexts: (cards (org-fc-index-filter-due index))) (if org-fc-shuffle-positions (setq cards (org-fc-index-shuffled-positions cards)) - (setq cards (take 2 (reverse (org-fc-index-positions cards))))) + (setq cards (take 1 (reverse (org-fc-index-positions cards))))) (if (null cards) (message "No cards due right now") (progn -- cgit v1.2.3