Variable: comint-process-echoes

comint-process-echoes is a customizable variable defined in comint.el.gz.

Value

nil

Documentation

If non-nil, assume that the subprocess echoes any input.

If so, delete one copy of the input so that only one copy eventually appears in the buffer.

This variable is buffer-local.

Source Code

;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defcustom comint-process-echoes nil
  "If non-nil, assume that the subprocess echoes any input.
If so, delete one copy of the input so that only one copy eventually
appears in the buffer.

This variable is buffer-local."
  :type 'boolean
  :group 'comint)