Hi,

On Tue, Jul 23, 2013 at 12:02 PM, Margarita Manterola
<[email protected]> wrote:
> I'm thinking of doing a git bisect between 2.6.38 and 3.0, but that
> doesn't sound very appealing :-/

I started the bisect, but unfortunately didn't make a lot of progress
due to a lot of the versions having compiler errors (this is a 2 year
old kernel, with a 1 year old gcc).  In any case, I was able to narrow
it down between 2.6.38 and 2.6.39-rc1.  Will continue bisecting
tomorrow.

In the meantime, I enlisted the help of Maximiliano Curia (my husband
and fellow Debian Developer) who was able to find that the issue is
caused by this lines in rltty.c:

tiop->c_lflag &= ~(ICANON | ECHO);
(...)
tiop->c_iflag &= ~(ICRNL | INLCR);

If these two lines are replaced by:

tiop->c_lflag &= ~(ECHO);
(...)
tiop->c_iflag &= ~(INLCR);

Then pastes work fine, but there's no echo while typing.

I strongly suspect this is a bug in the kernel, and will keep
debugging this tomorrow.

-- 
Besos,
Marga

_______________________________________________
Bug-readline mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-readline

Reply via email to