diff options
| author | Phillip Lord <phillip.lord@russet.org.uk> | 2020-04-08 22:42:45 +0100 |
|---|---|---|
| committer | Phillip Lord <phillip.lord@russet.org.uk> | 2020-04-08 22:42:45 +0100 |
| commit | 0c89f344ce019e03df278578414617b74034031b (patch) | |
| tree | 9e98fcd10b7d4a21e33ed8f9da482d5ef9c3a559 | |
| parent | bb134301db6855d2433361f38f9c408984009c45 (diff) | |
| download | org-drill-0c89f344ce019e03df278578414617b74034031b.tar.gz org-drill-0c89f344ce019e03df278578414617b74034031b.zip | |
Fix use of cl.el
* org-drill.el (org-drill-order-overdue-entries): Use cl-first
Closes #23
| -rw-r--r-- | org-drill.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org-drill.el b/org-drill.el index 8ae749a..48ea08a 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)))) |
