Handle output correctly in emacs mode in Eshell
* eat.el (eat--eshell-output-filter): Inhibit read only.
This commit is contained in:
parent
7c1dde6f1a
commit
32bd049d68
1 changed files with 2 additions and 1 deletions
3
eat.el
3
eat.el
|
@ -7257,7 +7257,8 @@ PROGRAM can be a shell command."
|
|||
eshell-last-output-end)))
|
||||
(let ((inhibit-read-only t))
|
||||
(delete-region eshell-last-output-start eshell-last-output-end))
|
||||
(let ((sync-windows (eat--synchronize-scroll-windows)))
|
||||
(let ((sync-windows (eat--synchronize-scroll-windows))
|
||||
(inhibit-read-only t))
|
||||
(eat-term-process-output eat-terminal str)
|
||||
(eat-term-redisplay eat-terminal)
|
||||
(funcall eat--synchronize-scroll-function sync-windows))
|
||||
|
|
Loading…
Add table
Reference in a new issue