Function: proced-sort-start
proced-sort-start is an interactive and byte-compiled function defined
in proced.el.gz.
Signature
(proced-sort-start &optional ARG)
Documentation
Sort Proced buffer by time the command started (START).
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-start (&optional arg)
"Sort Proced buffer by time the command started (START).
Prefix ARG controls sort order, see `proced-sort-interactive'."
(interactive (list (or current-prefix-arg 'no-arg)) proced-mode)
(proced-sort-interactive 'start arg))