Variable: tramp-pipe-stty-settings

tramp-pipe-stty-settings is a customizable variable defined in tramp-sh.el.gz.

Value

"-icanon min 1 time 0"

Documentation

How to prevent blocking read in pipeline processes.

This is used in make-process with connection-type pipe.

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

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-sh.el.gz
;;; Remote processes:

(defcustom tramp-pipe-stty-settings "-icanon min 1 time 0"
  "How to prevent blocking read in pipeline processes.
This is used in `make-process' with `connection-type' `pipe'."
  :group 'tramp
  :version "29.3"
  :type '(choice (const :tag "Use size limit" "-icanon min 1 time 0")
		 (const :tag "Use timeout" "-icanon min 0 time 1")
		 string))