Function: eshell-read-process-name
eshell-read-process-name is a byte-compiled function defined in
esh-proc.el.gz.
Signature
(eshell-read-process-name PROMPT)
Documentation
Read the name of a process from the minibuffer, using completion.
The prompt will be set to PROMPT.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-proc.el.gz
(defun eshell-read-process-name (prompt)
"Read the name of a process from the minibuffer, using completion.
The prompt will be set to PROMPT."
(completing-read prompt
(mapcar
(lambda (proc)
(cons (process-name proc) t))
(process-list))
nil t))