GNU bug report logs -
#35331
[PATCH] Neater html table of old versions in ELPA
Previous Next
Reported by: Mattias Engdegård <mattiase <at> acm.org>
Date: Fri, 19 Apr 2019 21:37:02 UTC
Severity: minor
Tags: patch
Done: Mattias Engdegård <mattiase <at> acm.org>
Bug is archived. No further changes may be made.
Full log
Message #17 received at 35331 <at> debbugs.gnu.org (full text, mbox):
Mattias Engdegård <mattiase <at> acm.org> writes:
> diff --git a/admin/archive-contents.el b/admin/archive-contents.el
> index de444e381..c4c2e5af1 100644
> --- a/admin/archive-contents.el
> +++ b/admin/archive-contents.el
> @@ -387,16 +387,14 @@ Rename DIR/ to PKG-VERS/, and return the descriptor."
>
> (defun archive--html-bytes-format (bytes) ;Aka memory-usage-format.
> (setq bytes (/ bytes 1024.0))
> - (let ((units '(;; "B"
> - "kB" "MB" "GB" "TB")))
> + (let ((units '("KiB" "MiB" "GiB" "TiB")))
> (while (>= bytes 1024)
> (setq bytes (/ bytes 1024.0))
> (setq units (cdr units)))
> (cond
> - ;; ((integerp bytes) (format "%4d%s" bytes (car units)))
> - ((>= bytes 100) (format "%4.0f%s" bytes (car units)))
> - ((>= bytes 10) (format "%4.1f%s" bytes (car units)))
> - (t (format "%4.2f%s" bytes (car units))))))
> + ((>= bytes 100) (format "%4.0f %s" bytes (car units)))
> + ((>= bytes 10) (format "%4.1f %s" bytes (car units)))
> + (t (format "%4.2f %s" bytes (car units))))))
Is it possible to reuse file-size-human-readable here?
Does the no-break space have to be a HTML entity,
or can it be Unicode ?\u00A0?
Thanks,
--
Basil
This bug report was last modified 5 years and 325 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.