Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Date: Wed, 10 May 2000 03:07:24 +0200 (MET DST)
From: <Pierre.Humblet@eurecom.fr>
Message-Id: <200005100107.DAA21250@pomerol.eurecom.fr>
To: cygwin@sourceware.cygnus.com
Subject: Re: weird keyboard behaviour
Cc: bug-readline@gnu.org

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

