Function: eshell-remove-process-entry

eshell-remove-process-entry is a byte-compiled function defined in esh-proc.el.gz.

Signature

(eshell-remove-process-entry ENTRY)

Documentation

Record the process ENTRY as fully completed.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-proc.el.gz
(defun eshell-remove-process-entry (entry)
  "Record the process ENTRY as fully completed."
  (if (and (eshell-processp (car entry))
	   (cdr entry)
	   eshell-done-messages-in-minibuffer)
      (message "[%s]+ Done %s" (process-name (car entry))
	       (process-command (car entry))))
  (setq eshell-process-list
	(delq entry eshell-process-list)))