[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/07: progress: 'progress-bar' accounts for brackets.
From: |
Ludovic Courtès |
Subject: |
04/07: progress: 'progress-bar' accounts for brackets. |
Date: |
Wed, 22 Nov 2017 09:02:46 -0500 (EST) |
civodul pushed a commit to branch wip-pull-reload
in repository guix.
commit 0da85e7e5d115d672825199e3c7cf709b34008e9
Author: Ludovic Courtès <address@hidden>
Date: Wed Nov 22 14:36:20 2017 +0100
progress: 'progress-bar' accounts for brackets.
* guix/progress.scm (progress-bar): Subtract 2 to BAR-WIDTH to account
for brackets.
---
guix/progress.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/guix/progress.scm b/guix/progress.scm
index 1993c74..ba79442 100644
--- a/guix/progress.scm
+++ b/guix/progress.scm
@@ -146,7 +146,8 @@ INTERVAL (a time-duration object), otherwise does nothing
and returns #f."
(define* (progress-bar % #:optional (bar-width 20))
"Return % as a string representing an ASCII-art progress bar. The total
width of the bar is BAR-WIDTH."
- (let* ((fraction (/ % 100))
+ (let* ((bar-width (max 3 (- bar-width 2)))
+ (fraction (/ % 100))
(filled (inexact->exact (floor (* fraction bar-width))))
(empty (- bar-width filled)))
(format #f "[~a~a]"
- branch wip-pull-reload created (now 62dbd6e), Ludovic Courtès, 2017/11/22
- 05/07: progress: Add 'progress-reporter/bar'., Ludovic Courtès, 2017/11/22
- 07/07: self: Add a progress report while loading modules., Ludovic Courtès, 2017/11/22
- 04/07: progress: 'progress-bar' accounts for brackets.,
Ludovic Courtès <=
- 03/07: progress: Factorize erase-in-line., Ludovic Courtès, 2017/11/22
- 02/07: DRAFT pull: Reload modules before doing anything else., Ludovic Courtès, 2017/11/22
- 06/07: weather: Use (guix progress) for progress report., Ludovic Courtès, 2017/11/22
- 01/07: gnu: Fix ambiguous 'zip' reference., Ludovic Courtès, 2017/11/22