bump version
[buildroot.git] / package / readline / readline51-002
blobe8b18d5f22a57ccfeb0d0d90130074f52e36ae8c
1                            READLINE PATCH REPORT
2                            =====================
4 Readline-Release: 5.1
5 Patch-ID: readline51-002
7 Bug-Reported-by: Mike Frysinger <vapier@gentoo.org>
8 Bug-Reference-ID: <200601120613.11907.vapier@gentoo.org>
9 Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2006-01/msg00045.html
11 Bug-Description:
13 Under some circumstances, Readline can use an incorrect setting for the flag
14 that indicates whether or not the terminal can auto-wrap, resulting in line-
15 wrapping errors.
17 Patch:
19 *** readline-5.1/terminal.c     Sat Nov 12 20:46:54 2005
20 --- readline-5.1/terminal.c     Tue Jan 31 10:57:54 2006
21 ***************
22 *** 123,127 ****
23   
24   /* Non-zero means the terminal can auto-wrap lines. */
25 ! int _rl_term_autowrap;
26   
27   /* Non-zero means that this terminal has a meta key. */
28 --- 126,130 ----
29   
30   /* Non-zero means the terminal can auto-wrap lines. */
31 ! int _rl_term_autowrap = -1;
32   
33   /* Non-zero means that this terminal has a meta key. */
34 ***************
35 *** 275,278 ****
36 --- 278,284 ----
37        int rows, cols;
38   {
39 +   if (_rl_term_autowrap == -1)
40 +     _rl_init_terminal_io (rl_terminal_name);
41
42     if (rows > 0)
43       _rl_screenheight = rows;