Function: proced-sort-pmem
proced-sort-pmem is an interactive and byte-compiled function defined
in proced.el.gz.
Signature
(proced-sort-pmem &optional ARG)
Documentation
Sort Proced buffer by percentage memory usage (%MEM).
Prefix ARG controls sort order, see proced-sort-interactive.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/proced.el.gz
(defun proced-sort-pmem (&optional arg)
"Sort Proced buffer by percentage memory usage (%MEM).
Prefix ARG controls sort order, see `proced-sort-interactive'."
(interactive (list (or current-prefix-arg 'no-arg)) proced-mode)
(proced-sort-interactive 'pmem arg))