Function: proced-format-memory

proced-format-memory is a byte-compiled function defined in proced.el.gz.

Signature

(proced-format-memory KILOBYTES)

Documentation

Format KILOBYTES in a human readable format.

Source Code

;; Defined in /usr/src/emacs/lisp/proced.el.gz
(defun proced-format-memory (kilobytes)
  "Format KILOBYTES in a human readable format."
  (funcall byte-count-to-string-function (* 1024 kilobytes)))