diff options
Diffstat (limited to 'lisp/org/org-list.el')
-rw-r--r-- | lisp/org/org-list.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/org-list.el b/lisp/org/org-list.el index 73f24ce7bd8..432e4310fae 100644 --- a/lisp/org/org-list.el +++ b/lisp/org/org-list.el @@ -2555,8 +2555,8 @@ With optional prefix argument ALL, do this for the whole buffer." (checked (car (nth 3 cookie))) (total (cdr (nth 3 cookie))) (new (if percentp - (format "[%d%%]" (/ (* 100 checked) - (max 1 total))) + (format "[%d%%]" (floor (* 100.0 checked) + (max 1 total))) (format "[%d/%d]" checked total)))) (goto-char beg) (insert new) |