summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--org-fc.el9
1 files changed, 0 insertions, 9 deletions
diff --git a/org-fc.el b/org-fc.el
index d2146c3..3c4a376 100644
--- a/org-fc.el
+++ b/org-fc.el
@@ -1611,15 +1611,6 @@ Pauses the review, unnarrows the buffer and activates
(colored-bar good "green")
(colored-bar easy "blue")))))
-(defun org-fc-dashboard-percent-right (stats)
- "Format review percentages in STATS."
- (let ((total (float (plist-get stats :total))))
- (format " %5.2f | %5.2f | %5.2f | %5.2f"
- (or (* 100 (/ (plist-get stats :again) total)) 0.0)
- (or (* 100 (/ (plist-get stats :hard) total)) 0.0)
- (or (* 100 (/ (plist-get stats :good) total)) 0.0)
- (or (* 100 (/ (plist-get stats :easy) total)) 0.0))))
-
;;;; Main View
;; Based on `mu4e-main-view-real'