Function: eshell-send-eof-to-process
eshell-send-eof-to-process is an interactive and byte-compiled
function defined in esh-mode.el.gz.
Signature
(eshell-send-eof-to-process)
Documentation
Send EOF to the currently-running "head" process.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-send-eof-to-process ()
"Send EOF to the currently-running \"head\" process."
(interactive)
(require 'esh-mode)
(declare-function eshell-send-input "esh-mode"
(&optional use-region queue-p no-newline))
(eshell-send-input nil nil t)
(when (eshell-head-process)
(process-send-eof (eshell-head-process))))