]> git.pld-linux.org Git - packages/bash.git/blame - bash32-006
- up to 3.2.39
[packages/bash.git] / bash32-006
CommitLineData
4112a3e1
ER
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 3.2
5Patch-ID: bash32-006
6
7Bug-Reported-by: ebb9@byu.net
8Bug-Reference-ID: <45540862.9030900@byu.net>
9Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2006-11/msg00017.html
10 http://lists.gnu.org/archive/html/bug-bash/2006-11/msg00016.html
11
12Bug-Description:
13
14In some cases, code that is intended to be used in the presence of multibyte
15characters is called when no such characters are present, leading to incorrect
16display position calculations and incorrect redisplay.
17
18Patch:
19
20*** ../bash-3.2-patched/lib/readline/display.c Thu Sep 14 14:20:12 2006
21--- lib/readline/display.c Mon Nov 13 17:55:57 2006
22***************
23*** 2381,2384 ****
24--- 2409,2414 ----
25 if (end <= start)
26 return 0;
27+ if (MB_CUR_MAX == 1 || rl_byte_oriented)
28+ return (end - start);
29
30 memset (&ps, 0, sizeof (mbstate_t));
31*** ../bash-3.2/patchlevel.h Thu Apr 13 08:31:04 2006
32--- patchlevel.h Mon Oct 16 14:22:54 2006
33***************
34*** 26,30 ****
35 looks for to find the patch level (for the sccs version string). */
36
37! #define PATCHLEVEL 5
38
39 #endif /* _PATCHLEVEL_H_ */
40--- 26,30 ----
41 looks for to find the patch level (for the sccs version string). */
42
43! #define PATCHLEVEL 6
44
45 #endif /* _PATCHLEVEL_H_ */
This page took 0.055476 seconds and 4 git commands to generate.