remove redundant prerequisite
[buildroot.git] / package / readline / readline52-011
bloba1197ede64860d29b16f36af5bcc3ef75cb18a91
1                            READLINE PATCH REPORT
2                            =====================
4 Readline-Release: 5.2
5 Patch-ID: readline52-011
7 Bug-Reported-by:        Uwe Doering <gemini@geminix.org>
8 Bug-Reference-ID:       <46F3DD72.2090801@geminix.org>
9 Bug-Reference-URL:      http://lists.gnu.org/archive/html/bug-bash/2007-09/msg00102.html
11 Bug-Description:
13 There is an off-by-one error in the code that buffers characters received
14 very quickly in succession, causing characters to be dropped.
16 Patch:
18 *** ../readline-5.2-patched/input.c     2007-08-25 13:47:10.000000000 -0400
19 --- input.c     2007-10-12 22:55:25.000000000 -0400
20 ***************
21 *** 155,159 ****
22         pop_index--;
23         if (pop_index < 0)
24 !       pop_index = ibuffer_len - 1;
25         ibuffer[pop_index] = key;
26         return (1);
27 --- 155,159 ----
28         pop_index--;
29         if (pop_index < 0)
30 !       pop_index = ibuffer_len;
31         ibuffer[pop_index] = key;
32         return (1);