Function: eshell-proc-initialize
eshell-proc-initialize is a byte-compiled function defined in
esh-proc.el.gz.
Signature
(eshell-proc-initialize)
Documentation
Initialize the process handling code.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-proc.el.gz
(defun eshell-proc-initialize () ;Called from `eshell-mode' via intern-soft!
"Initialize the process handling code."
(make-local-variable 'eshell-process-list)
(setq-local eshell-special-ref-alist
(cons
`("process"
(creation-function get-process)
(insertion-function eshell-insert-process)
(completion-function eshell-complete-process-ref))
eshell-special-ref-alist))
(eshell-proc-mode))