Codebase list org-drill / 602f5c4
Fix use of cl.el * org-drill.el (org-drill-order-overdue-entries): Use cl-first Closes #23 Phillip Lord 4 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
27142714 lapsed-days))
27152715 (oref session overdue-data))))
27162716 (setf (oref session overdue-entries)
2717 (mapcar 'first
2717 (mapcar 'cl-first
27182718 (append
27192719 (sort (org-drill-shuffle not-lapsed)
27202720 (lambda (a b) (> (cl-second a) (cl-second b))))