unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Visuwesh <visuweshm@gmail.com>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: emacs-devel@gnu.org,  jao <jao@gnu.org>
Subject: Re: [elpa] externals/consult-recoll c5926ca3eb 1/2: format for size annotation
Date: Fri, 14 Oct 2022 07:14:02 +0530	[thread overview]
Message-ID: <87h707qivx.fsf@gmail.com> (raw)
In-Reply-To: <jwvr0zbqsw9.fsf-monnier+emacs@gnu.org> (Stefan Monnier's message of "Thu, 13 Oct 2022 18:08:56 -0400")

[வியாழன் அக்டோபர் 13, 2022] Stefan Monnier wrote:

> I see we have `memory-report--format` which does something similar.
> I'm pretty sure we have other chunks of code doing the same elsewhere.
> Should Someone™ introduce a function in `subr.el` or somesuch to solve
> it once and for all?

Don't we already have `file-size-human-readable' for that?

>         Stefan
>> +(defun consult-recoll--format-size (bytes)
>> +  "Format the given size with adaptive units."
>> +  (let ((szn (string-to-number bytes)))
>> +    (cond ((< szn 1024) (format "%s bytes" szn))
>> +          ((< szn 1048576) (format "%.1f Kbs" (/ szn 1024.0)))
>> +          ((< szn 1073741824) (format "%.1f Mbs" (/ szn 1024 1024)))
>> +          (t (format "%.1fs Gbs" (/ szn 1024 1024 1024))))))
>> +



  reply	other threads:[~2022-10-14  1:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <166569465562.12992.2240825905795534702@vcs2.savannah.gnu.org>
     [not found] ` <20221013205735.EF3DEC03F23@vcs2.savannah.gnu.org>
2022-10-13 22:08   ` [elpa] externals/consult-recoll c5926ca3eb 1/2: format for size annotation Stefan Monnier
2022-10-14  1:44     ` Visuwesh [this message]
2022-10-14 19:15       ` Stefan Monnier
2022-10-14 20:04         ` jao
2022-10-15  2:57         ` Stefan Kangas

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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87h707qivx.fsf@gmail.com \
    --to=visuweshm@gmail.com \
    --cc=emacs-devel@gnu.org \
    --cc=jao@gnu.org \
    --cc=monnier@iro.umontreal.ca \
    /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 public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).