diff options
author | Hamish Moffatt <hamish@cloud.net.au> | 2008-02-06 01:26:03 +0000 |
---|---|---|
committer | Hamish Moffatt <hamish@cloud.net.au> | 2008-02-06 01:26:03 +0000 |
commit | d53b1d1f93fe0a92eaa92507a31e11a5f31a70d6 (patch) | |
tree | d6322b064034588e308bde7f286a0d0ae942b838 /package/readline/readline51-002 | |
parent | 05ecb806ff958dcf2a2ac2683d765bfa272f7677 (diff) |
Upgrade readline to 5.2, including all current upstream patches.
Fetch it from $(BR2_GNU_MIRROR).
Note proper dependency on ncurses.
Diffstat (limited to 'package/readline/readline51-002')
-rw-r--r-- | package/readline/readline51-002 | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/package/readline/readline51-002 b/package/readline/readline51-002 index e8b18d5f2..e69de29bb 100644 --- a/package/readline/readline51-002 +++ b/package/readline/readline51-002 @@ -1,43 +0,0 @@ - READLINE PATCH REPORT - ===================== - -Readline-Release: 5.1 -Patch-ID: readline51-002 - -Bug-Reported-by: Mike Frysinger <vapier@gentoo.org> -Bug-Reference-ID: <200601120613.11907.vapier@gentoo.org> -Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2006-01/msg00045.html - -Bug-Description: - -Under some circumstances, Readline can use an incorrect setting for the flag -that indicates whether or not the terminal can auto-wrap, resulting in line- -wrapping errors. - -Patch: - -*** readline-5.1/terminal.c Sat Nov 12 20:46:54 2005 ---- readline-5.1/terminal.c Tue Jan 31 10:57:54 2006 -*************** -*** 123,127 **** - - /* Non-zero means the terminal can auto-wrap lines. */ -! int _rl_term_autowrap; - - /* Non-zero means that this terminal has a meta key. */ ---- 126,130 ---- - - /* Non-zero means the terminal can auto-wrap lines. */ -! int _rl_term_autowrap = -1; - - /* Non-zero means that this terminal has a meta key. */ -*************** -*** 275,278 **** ---- 278,284 ---- - int rows, cols; - { -+ if (_rl_term_autowrap == -1) -+ _rl_init_terminal_io (rl_terminal_name); -+ - if (rows > 0) - _rl_screenheight = rows; |