Function: comint-send-eof

comint-send-eof is an interactive and byte-compiled function defined in comint.el.gz.

Signature

(comint-send-eof)

Documentation

Send an EOF to the current buffer's process.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defun comint-send-eof ()
  "Send an EOF to the current buffer's process."
  (interactive nil comint-mode)
  (comint-send-input t t)
  (process-send-eof))