]> git.pld-linux.org Git - packages/bash.git/blob - bash40-021
- up to 4.0.33
[packages/bash.git] / bash40-021
1                              BASH PATCH REPORT
2                              =================
3
4 Bash-Release: 4.0
5 Patch-ID: bash40-021
6
7 Bug-Reported-by:  Matt Zyzik <matt.zyzik@nyu.edu>
8 Bug-Reference-ID: <20090319015542.696F62B8E8@ice.filescope.com>
9 Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2009-03/msg00149.html
10
11 Bug-Description:
12
13 When not in a locale supporting multibyte characters, readline will occasionally
14 not erase characters between the cursor position and the end of the line
15 when killing text backwards.
16
17 Patch:
18
19 *** ../bash-4.0-patched/lib/readline/display.c  2009-01-04 14:32:32.000000000 -0500
20 --- lib/readline/display.c      2009-04-14 14:00:18.000000000 -0400
21 ***************
22 *** 1775,1779 ****
23              adjust col_lendiff based on the difference between _rl_last_c_pos
24              and _rl_screenwidth */
25 !         if (col_lendiff && (_rl_last_c_pos < _rl_screenwidth))
26   #endif
27             {     
28 --- 1775,1779 ----
29              adjust col_lendiff based on the difference between _rl_last_c_pos
30              and _rl_screenwidth */
31 !         if (col_lendiff && ((MB_CUR_MAX == 1 || rl_byte_oriented) || (_rl_last_c_pos < _rl_screenwidth)))
32   #endif
33             {     
34 *** ../bash-4.0/patchlevel.h    2009-01-04 14:32:40.000000000 -0500
35 --- patchlevel.h        2009-02-22 16:11:31.000000000 -0500
36 ***************
37 *** 26,30 ****
38      looks for to find the patch level (for the sccs version string). */
39   
40 ! #define PATCHLEVEL 20
41   
42   #endif /* _PATCHLEVEL_H_ */
43 --- 26,30 ----
44      looks for to find the patch level (for the sccs version string). */
45   
46 ! #define PATCHLEVEL 21
47   
48   #endif /* _PATCHLEVEL_H_ */
This page took 0.056681 seconds and 3 git commands to generate.