Variable: compilation-disable-input

compilation-disable-input is a customizable variable defined in compile.el.gz.

Value

nil

Documentation

If non-nil, send end-of-file as compilation process input.

This only affects platforms that support asynchronous processes (see start-process); synchronous compilation processes never accept input.

This variable was added, or its default value changed, in Emacs 22.1.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
;;;###autoload(put 'compile-command 'safe-local-variable (lambda (a) (and (stringp a) (if (boundp 'compilation-read-command) compilation-read-command t))))

;;;###autoload
(defcustom compilation-disable-input nil
  "If non-nil, send end-of-file as compilation process input.
This only affects platforms that support asynchronous processes (see
`start-process'); synchronous compilation processes never accept input."
  :type 'boolean
  :version "22.1")