summaryrefslogtreecommitdiff
path: root/org-fc.el
diff options
context:
space:
mode:
authorLeon Rische <leon.rische@me.com>2020-10-02 12:22:08 +0200
committerLeon Rische <leon.rische@me.com>2020-10-02 12:22:08 +0200
commit4e189b3916b846c1e14ee57642248350234055c3 (patch)
tree0f8ca81b5851b10278bc1f7f6eca745c1e09fdc9 /org-fc.el
parent609dca88a8701d5c80511bb894ddabc72271c727 (diff)
Remove unused text stats function
Diffstat (limited to 'org-fc.el')
-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'