mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
progress: Rename 'erase-in-line' to 'erase-current-line'.
Suggested by Danny Milosavljevic <dannym@scratchpost.org>. * guix/progress.scm (erase-in-line): Rename to... (erase-current-line): ... this. Adjust callers.
This commit is contained in:
parent
e224820386
commit
3e0a42973b
1 changed files with 6 additions and 6 deletions
|
@ -178,8 +178,8 @@ (define* (progress-bar % #:optional (bar-width 20))
|
|||
(make-string filled #\#)
|
||||
(make-string empty #\space))))
|
||||
|
||||
(define (erase-in-line port)
|
||||
"Write an ANSI erase-in-line sequence to PORT to erase the whole line and
|
||||
(define (erase-current-line port)
|
||||
"Write an ANSI erase-current-line sequence to PORT to erase the whole line and
|
||||
move the cursor to the beginning of the line."
|
||||
(display "\r\x1b[K" port))
|
||||
|
||||
|
@ -206,7 +206,7 @@ (define elapsed
|
|||
(byte-count->string throughput)
|
||||
(seconds->string elapsed)
|
||||
(progress-bar %) %)))
|
||||
(erase-in-line log-port)
|
||||
(erase-current-line log-port)
|
||||
(display (string-pad-middle left right
|
||||
(current-terminal-columns))
|
||||
log-port)
|
||||
|
@ -218,7 +218,7 @@ (define elapsed
|
|||
(byte-count->string throughput)
|
||||
(seconds->string elapsed)
|
||||
(byte-count->string transferred))))
|
||||
(erase-in-line log-port)
|
||||
(erase-current-line log-port)
|
||||
(display (string-pad-middle left right
|
||||
(current-terminal-columns))
|
||||
log-port)
|
||||
|
@ -248,7 +248,7 @@ (define (report-progress)
|
|||
(set! done (+ 1 done))
|
||||
(unless (> done total)
|
||||
(let* ((ratio (* 100. (/ done total))))
|
||||
(erase-in-line port)
|
||||
(erase-current-line port)
|
||||
(if (string-null? prefix)
|
||||
(display (progress-bar ratio (current-terminal-columns)) port)
|
||||
(let ((width (- (current-terminal-columns)
|
||||
|
@ -263,7 +263,7 @@ (define (report-progress)
|
|||
(set! done 0)))
|
||||
(report report-progress)
|
||||
(stop (lambda ()
|
||||
(erase-in-line port)
|
||||
(erase-current-line port)
|
||||
(unless (string-null? prefix)
|
||||
(display prefix port)
|
||||
(newline port))
|
||||
|
|
Loading…
Reference in a new issue