]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/patches/bash/bash32-016
Merge remote-tracking branch 'erik/sendEmail' into core67-merge
[people/teissler/ipfire-2.x.git] / src / patches / bash / bash32-016
1 BASH PATCH REPORT
2 =================
3
4 Bash-Release: 3.2
5 Patch-ID: bash32-016
6
7 Bug-Reported-by: Peter Volkov <torre_cremata@mail.ru>
8 Bug-Reference-ID: <1171795523.8021.18.camel@localhost>
9 Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2007-02/msg00054.html
10
11 Bug-Description:
12
13 When moving the cursor, bash sometimes misplaces the cursor when the prompt
14 contains two or more multibyte characters. The particular circumstance that
15 uncovered the problem was having the (multibyte) current directory name in
16 the prompt string.
17
18 Patch:
19
20 *** ../bash-3.2/lib/readline/display.c Fri Jan 19 13:34:50 2007
21 --- lib/readline/display.c Sat Mar 10 17:25:44 2007
22 ***************
23 *** 1745,1749 ****
24 {
25 dpos = _rl_col_width (data, 0, new);
26 ! if (dpos > prompt_last_invisible) /* XXX - don't use woff here */
27 {
28 dpos -= woff;
29 --- 1745,1752 ----
30 {
31 dpos = _rl_col_width (data, 0, new);
32 ! /* Use NEW when comparing against the last invisible character in the
33 ! prompt string, since they're both buffer indices and DPOS is a
34 ! desired display position. */
35 ! if (new > prompt_last_invisible) /* XXX - don't use woff here */
36 {
37 dpos -= woff;
38 *** ../bash-3.2/patchlevel.h Thu Apr 13 08:31:04 2006
39 --- patchlevel.h Mon Oct 16 14:22:54 2006
40 ***************
41 *** 26,30 ****
42 looks for to find the patch level (for the sccs version string). */
43
44 ! #define PATCHLEVEL 15
45
46 #endif /* _PATCHLEVEL_H_ */
47 --- 26,30 ----
48 looks for to find the patch level (for the sccs version string). */
49
50 ! #define PATCHLEVEL 16
51
52 #endif /* _PATCHLEVEL_H_ */