Function: eshell-resume-command

eshell-resume-command is a byte-compiled function defined in esh-cmd.el.gz.

Signature

(eshell-resume-command PROC STATUS)

Documentation

Resume the current command when a process ends.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-cmd.el.gz
(defun eshell-resume-command (proc status)
  "Resume the current command when a process ends."
  (when proc
    (unless (or (not (stringp status))
		(string= "stopped" status)
		(string-match eshell-reset-signals status))
      (if (eq proc (eshell-tail-process))
	  (eshell-resume-eval)))))