summaryrefslogtreecommitdiffstats
path: root/package/readline/readline52-011.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2010-11-02 16:30:24 -0300
committerPeter Korsgaard <jacmet@sunsite.dk>2010-11-04 22:55:23 +0100
commit268ab3c94111e35264556b32df8e6f5c913291b0 (patch)
treea1622052c272aace9e452b21b9fc357256000588 /package/readline/readline52-011.patch
parentfe67fb0456f8786374b387da26bd37e5b09f71c8 (diff)
downloadbuildroot-novena-268ab3c94111e35264556b32df8e6f5c913291b0.tar.gz
buildroot-novena-268ab3c94111e35264556b32df8e6f5c913291b0.zip
readline: bump to version 6.1
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/readline/readline52-011.patch')
-rw-r--r--package/readline/readline52-011.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/package/readline/readline52-011.patch b/package/readline/readline52-011.patch
deleted file mode 100644
index 963632e57..000000000
--- a/package/readline/readline52-011.patch
+++ /dev/null
@@ -1,32 +0,0 @@
- READLINE PATCH REPORT
- =====================
-
-Readline-Release: 5.2
-Patch-ID: readline52-011
-
-Bug-Reported-by: Uwe Doering <gemini@geminix.org>
-Bug-Reference-ID: <46F3DD72.2090801@geminix.org>
-Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2007-09/msg00102.html
-
-Bug-Description:
-
-There is an off-by-one error in the code that buffers characters received
-very quickly in succession, causing characters to be dropped.
-
-Patch:
-
-*** ../readline-5.2-patched/input.c 2007-08-25 13:47:10.000000000 -0400
---- ./input.c 2007-10-12 22:55:25.000000000 -0400
-***************
-*** 155,159 ****
- pop_index--;
- if (pop_index < 0)
-! pop_index = ibuffer_len - 1;
- ibuffer[pop_index] = key;
- return (1);
---- 155,159 ----
- pop_index--;
- if (pop_index < 0)
-! pop_index = ibuffer_len;
- ibuffer[pop_index] = key;
- return (1);