]> git.pld-linux.org Git - packages/bash.git/blame - bash42-002
up to 4.2.45
[packages/bash.git] / bash42-002
CommitLineData
74aff021
AM
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 4.2
5Patch-ID: bash42-002
6
7Bug-Reported-by: Clark J. Wang <dearvoid@gmail.com>
8Bug-Reference-ID: <AANLkTimGbW7aC4E5infXP6ku5WPci4t=xVc+L1SyHqrD@mail.gmail.com>
9Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2011-02/msg00157.html
10
11Bug-Description:
12
13The readline vi-mode `cc', `dd', and `yy' commands failed to modify the
14entire line.
15
16Patch (apply with `patch -p0'):
17
18*** ../bash-4.2-patched/lib/readline/vi_mode.c 2010-11-20 19:51:39.000000000 -0500
19--- lib/readline/vi_mode.c 2011-02-17 20:24:25.000000000 -0500
20***************
21*** 1115,1119 ****
22 _rl_vi_last_motion = c;
23 RL_UNSETSTATE (RL_STATE_VIMOTION);
24! return (0);
25 }
26 #if defined (READLINE_CALLBACKS)
27--- 1115,1119 ----
28 _rl_vi_last_motion = c;
29 RL_UNSETSTATE (RL_STATE_VIMOTION);
30! return (vidomove_dispatch (m));
31 }
32 #if defined (READLINE_CALLBACKS)
33*** ../bash-4.2-patched/lib/readline/callback.c 2010-06-06 12:18:58.000000000 -0400
34--- lib/readline/callback.c 2011-02-17 20:43:28.000000000 -0500
35***************
36*** 149,152 ****
37--- 149,155 ----
38 /* Should handle everything, including cleanup, numeric arguments,
39 and turning off RL_STATE_VIMOTION */
40+ if (RL_ISSTATE (RL_STATE_NUMERICARG) == 0)
41+ _rl_internal_char_cleanup ();
42+
43 return;
44 }
45*** ../bash-4.2-patched/patchlevel.h Sat Jun 12 20:14:48 2010
46--- patchlevel.h Thu Feb 24 21:41:34 2011
47***************
48*** 26,30 ****
49 looks for to find the patch level (for the sccs version string). */
50
51! #define PATCHLEVEL 1
52
53 #endif /* _PATCHLEVEL_H_ */
54--- 26,30 ----
55 looks for to find the patch level (for the sccs version string). */
56
57! #define PATCHLEVEL 2
58
59 #endif /* _PATCHLEVEL_H_ */
60
This page took 0.03198 seconds and 4 git commands to generate.