guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: progress: Rename 'erase-in-line' to 'erase-current-line'.


From: Ludovic Courtès
Subject: 01/02: progress: Rename 'erase-in-line' to 'erase-current-line'.
Date: Fri, 15 Dec 2017 05:53:31 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 3e0a42973b90cfaa39b36f1a0c6c39d71f5e317c
Author: Ludovic Courtès <address@hidden>
Date:   Fri Dec 15 10:47:01 2017 +0100

    progress: Rename 'erase-in-line' to 'erase-current-line'.
    
    Suggested by Danny Milosavljevic <address@hidden>.
    
    * guix/progress.scm (erase-in-line): Rename to...
    (erase-current-line): ... this.  Adjust callers.
---
 guix/progress.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/guix/progress.scm b/guix/progress.scm
index 0ca5c08..c9c3cd1 100644
--- a/guix/progress.scm
+++ b/guix/progress.scm
@@ -178,8 +178,8 @@ width of the bar is BAR-WIDTH."
             (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 @@ ABBREVIATION used to shorten FILE for display."
                                      (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 @@ ABBREVIATION used to shorten FILE for display."
                                      (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 @@ tasks is performed.  Write PREFIX at the beginning of the 
line."
     (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 @@ tasks is performed.  Write PREFIX at the beginning of the 
line."
             (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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]