From: "Rudolf Adamkovič" <salutis@me.com>
To: Ihor Radchenko <yantar92@posteo.net>,
Stefan Monnier <monnier@iro.umontreal.ca>
Cc: emacs-devel@gnu.org
Subject: Re: comint-output-filter-functions and multi-line input
Date: Wed, 19 Oct 2022 01:22:54 +0200 [thread overview]
Message-ID: <m2v8og4sz5.fsf@me.com> (raw)
In-Reply-To: <87k04xfz7f.fsf@localhost>
Ihor Radchenko <yantar92@posteo.net> writes:
> #+RESULTS:
> : > > > hello
> ^ ^ ^
> excessive empty output lines [...]
Given ...
#### (comint-run "/bin/bash")
... the following ...
#### (with-current-buffer "*bash*"
#### (insert "if true
#### then
#### echo hello
#### fi")
#### (comint-send-input))
... outputs ...
#### $ if true
#### then
#### echo hello
#### fi
#### > > > hello
Not good.
Similarly, ...
#### (with-current-buffer "*bash*"
#### (dolist (line (list "if true"
#### "then"
#### "echo hello"
#### "fi"))
#### (insert line)
#### (comint-send-input)))
... also gives the same output.
(I took this as a minimal working bug reproducer).
After investigating, I found that ...
#### (with-current-buffer "*bash*"
#### (let ((comint-process-echoes t))
#### (dolist (line (list "if true"
#### "then"
#### "echo hello"
#### "fi"))
#### (insert line)
#### (comint-send-input))))
... outputs (perhaps the desired) ...
$ if true
> then
> echo hello
> fi
hello
Would this help?
Rudy
--
"Logic is a science of the necessary laws of thought, without which no
employment of the understanding and the reason takes place."
-- Immanuel Kant, 1785
Rudolf Adamkovič <salutis@me.com> [he/him]
Studenohorská 25
84103 Bratislava
Slovakia
next prev parent reply other threads:[~2022-10-18 23:22 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-16 8:48 comint-output-filter-functions and multi-line input Ihor Radchenko
2022-10-17 21:23 ` miha
2022-10-18 5:28 ` Ihor Radchenko
2022-10-18 7:22 ` miha
2022-10-18 7:35 ` Ihor Radchenko
2022-10-18 11:15 ` miha
2022-10-21 5:32 ` Ihor Radchenko
2022-10-18 13:38 ` Stefan Monnier
2022-10-17 21:27 ` Stefan Monnier
2022-10-18 6:00 ` Ihor Radchenko
2022-10-18 23:22 ` Rudolf Adamkovič [this message]
2022-10-21 5:35 ` Ihor Radchenko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m2v8og4sz5.fsf@me.com \
--to=salutis@me.com \
--cc=emacs-devel@gnu.org \
--cc=monnier@iro.umontreal.ca \
--cc=yantar92@posteo.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.