diff options
| author | Phillip Lord <phillip.lord@russet.org.uk> | 2019-06-22 16:53:05 +0100 |
|---|---|---|
| committer | Phillip Lord <phillip.lord@russet.org.uk> | 2019-06-22 16:53:05 +0100 |
| commit | c59c49a4dfc501b4e6fc163c56760b67276579f2 (patch) | |
| tree | b16e0430777047773860b244765759d8ba4c5243 | |
| parent | de11158c99c71562f718a5a746c95184fb5c4296 (diff) | |
| download | org-drill-c59c49a4dfc501b4e6fc163c56760b67276579f2.tar.gz org-drill-c59c49a4dfc501b4e6fc163c56760b67276579f2.zip | |
Remove call to cl
| -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 feea5c1..dadc19d 100644 --- a/org-drill.el +++ b/org-drill.el @@ -2903,7 +2903,7 @@ STATUS is one of the following values: (defun org-drill-progress-message (collected scanned) (when (zerop (% scanned 50)) (let* ((meter-width 40) - (sym1 (if (oddp (floor scanned (* 50 meter-width))) ?| ?.)) + (sym1 (if (cl-oddp (floor scanned (* 50 meter-width))) ?| ?.)) (sym2 (if (eql sym1 ?.) ?| ?.))) (message "Collecting due drill items:%4d %s%s" collected |
