Tweak memory-report--format
* lisp/emacs-lisp/memory-report.el (memory-report--format): Make everything line up, even when there's "1023.4kB".
This commit is contained in:
parent
abc8d6b946
commit
c7c261ebdf
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ by counted more than once."
|
|||
(while (>= bytes 1024)
|
||||
(setq bytes (/ bytes 1024.0))
|
||||
(setq units (cdr units)))
|
||||
(format "%5.1f%s" bytes (car units))))
|
||||
(format "%6.1f%s" bytes (car units))))
|
||||
|
||||
(defun memory-report--gc-elem (elems type)
|
||||
(* (nth 1 (assq type elems))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue