From: Steve Sprang <steve.sprang@gmail.com>
To: Mathieu Lirzin <mthl@openmailbox.org>
Cc: guix-devel@gnu.org
Subject: Re: [PATCH] download: Fix some minor progress-logging regressions.
Date: Wed, 23 Sep 2015 17:48:34 -0700 [thread overview]
Message-ID: <CA+xn8YDFV_kz8mMt_y7eu3TbH4Du10jcw2FVihettFbkcPeaLQ@mail.gmail.com> (raw)
In-Reply-To: <87r3lwhgah.fsf@openmailbox.org>
This patch is still pending. I don't want it to fall through the cracks. :-)
Thanks!
-Steve
On Thu, Sep 17, 2015 at 2:44 PM, Mathieu Lirzin <mthl@openmailbox.org> wrote:
> Steve Sprang <steve.sprang@gmail.com> writes:
>
>> Here's attempt #2.
> [...]
>> @@ -101,15 +101,14 @@ width of the bar is BAR-WIDTH."
>>
>> (define (string-pad-middle left right len)
>> "Combine LEFT and RIGHT with enough padding in the middle so that the
>> -resulting string has length at least LEN. This right justifies RIGHT."
>> - (string-append left
>> - (string-pad right (max 0 (- len (string-length left))))))
>> -
>> -(define (store-url-abbreviation url)
>> - "Return a friendlier version of URL for display."
>> - (let ((store-path (string-append (%store-directory) "/" (basename url))))
>> - ;; Take advantage of the implementation for store paths.
>> - (store-path-abbreviation store-path)))
>> +resulting string has length at least LEN (it may overflow). If the string
>> +does not overflow, the last char in RIGHT will be flush with the LEN
>> +column."
>> + (let* ((total-used (+ (string-length left)
>> + (string-length right)))
>> + (num-spaces (max 1 (- len total-used)))
>> + (padding (make-string num-spaces #\space)))
>> + (string-append left padding right)))
>
> The phrasing is fine for me. Thanks again.
>
> --
> Mathieu Lirzin
next prev parent reply other threads:[~2015-09-24 0:48 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-17 11:24 [PATCH] download: Fix some minor progress-logging regressions Steve Sprang
2015-09-17 18:18 ` Mathieu Lirzin
2015-09-17 19:44 ` Steve Sprang
2015-09-17 20:52 ` Steve Sprang
2015-09-17 21:44 ` Mathieu Lirzin
2015-09-24 0:48 ` Steve Sprang [this message]
2015-09-24 7:42 ` Ludovic Courtès
2015-09-24 2:05 ` Mark H Weaver
2015-09-17 21:21 ` Mathieu Lirzin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CA+xn8YDFV_kz8mMt_y7eu3TbH4Du10jcw2FVihettFbkcPeaLQ@mail.gmail.com \
--to=steve.sprang@gmail.com \
--cc=guix-devel@gnu.org \
--cc=mthl@openmailbox.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.