This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: weird keyboard behaviour


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]