weird keyboard behaviour

Pierre.Humblet@eurecom.fr Pierre.Humblet@eurecom.fr
Tue May 9 18:07:00 GMT 2000


The source of the bug is in readline/bind.c as reported before, e.g. in
http://sourceware.cygnus.com/ml/cygwin/1999-02/msg00909.html

A partial fix appears on
line 670 of bind.c from Cygnus bash-src.tar.gz
and line 633 of bind.c from Gnu readline-4.1.tar.gz

However the size of the buffer returned by
_rl_read_file( ) is not correct. It still includes the \r 
suppressed by text mode processing.
To fix the bug, add the line indicated below.

#if 0
  if (i < file_size)
#else
         file_size = i;   <======  Add this line here
  if (i < 0)
#endif

Pierre

At 07:09 AM 5/9/00 -0700, Earnie Boyd wrote:
>--- Jean-Paul Le Fevre <J-P.LeFevre@cea.fr> wrote:
>> 
>> Under bash the keyboard has a strange behaviour.
>> My keyboard is a french one (azerty). The letter 's'
>> is not available : pressing the key does nothing
>
>This can be caused by an improper ~/.inputrc file.  If you have a ~/.inputrc
>file make sure that it has UNIX style (\n only) line endings.


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com



More information about the Cygwin mailing list