branch: elpa/org-drill
commit 602f5c4d96ef8c274d69ee52207639841c20f057
Author: Phillip Lord <[email protected]>
Commit: Phillip Lord <[email protected]>

    Fix use of cl.el
    
    * org-drill.el (org-drill-order-overdue-entries): Use cl-first
    
    Closes #23
---
 org-drill.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org-drill.el b/org-drill.el
index 8ae749a7f8..48ea08a447 100644
--- a/org-drill.el
+++ b/org-drill.el
@@ -2715,7 +2715,7 @@ all the markers used by Org-Drill will be freed."
                                  lapsed-days))
                   (oref session overdue-data))))
     (setf (oref session overdue-entries)
-          (mapcar 'first
+         (mapcar 'cl-first
                   (append
                    (sort (org-drill-shuffle not-lapsed)
                          (lambda (a b) (> (cl-second a) (cl-second b))))

Reply via email to