This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project. See the Cygwin home page for more information.
[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index] [Subject Index] [Author Index] [Thread Index]

Re: newbie question & Readline bug report



At 12:14 PM 2/26/99 +0100, Schumann AG wrote:
>The .inputrc file must be unix-style. That fixed it for me.
>
>michael.easter@excite.com wrote:
>> There must be something I am missing. I have tried the following: "set
>> bell-style none" in a .inputrc file in both the $HOME and / directories.
>> Upon logging in again, the bell persists.

What Schumann AG means is that .inputrc can't include \r 
EVEN ON TEXT MOUNTED PARTITIONS. That means there is a bug in readline.

Cygnus src/readline/bind.c
*******************************************
  i = read (file, buffer, finfo.st_size);
  close (file);
                                       The error is here:
  if (i != finfo.st_size)      <========================
    return (errno);
********************************************
It should be patched, e.g. to 
  if (i <= 0) 

By curiosity I looked up ftp.gnu.org
The bug is present in versions up to readline-2.2.1 but it 
appears to be fixed in readline-4.0

Pierre



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