Fix handling non-interactive processes in Eshell

* eat.el (eat--eshell-adjust-make-process-args): Check whether
the process going to be run will be interactive process.
* eat.el: Declare function 'eshell-interactive-output-p'.a
This commit is contained in:
Akib Azmain Turja 2022-12-15 18:57:55 +06:00
parent e597bcfbb2
commit f912425fb4
No known key found for this signature in database
GPG key ID: 5535FCF54D88616B

3
eat.el
View file

@ -5522,6 +5522,8 @@ PROGRAM can be a shell command."
(eshell-sentinel process message))
(declare-function eshell-search-path "esh-ext" (name))
(declare-function eshell-interactive-output-p "esh-io"
(&optional index handles))
(defvar eshell-current-subjob-p) ; In `esh-proc'.
;; HACK: This is a dirty hack, it can break easily.
@ -5532,6 +5534,7 @@ Call FN with COMMAND and ARGS, and whenever `make-process' is called,
modify its argument to change the filter, the sentinel and invoke
`stty' from the new process."
(if (or eshell-current-subjob-p
(not (eshell-interactive-output-p))
(and (not (eshell-search-path "stty"))
(pcase eat-eshell-fallback-if-stty-not-available
('nil nil)