Function: eshell-reset-after-proc
eshell-reset-after-proc is a byte-compiled function defined in
esh-proc.el.gz.
Signature
(eshell-reset-after-proc STATUS)
Documentation
Reset the command input location after a process terminates.
The signals which will cause this to happen are matched by
eshell-reset-signals.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-proc.el.gz
(defun eshell-reset-after-proc (status)
"Reset the command input location after a process terminates.
The signals which will cause this to happen are matched by
`eshell-reset-signals'."
(when (and (stringp status)
(string-match eshell-reset-signals status))
(require 'esh-mode)
(declare-function eshell-reset "esh-mode" (&optional no-hooks))
(eshell-reset)))