source: npl/system/bash/bash-4.3-patches/bash43-004 @ 40bade7

Last change on this file since 40bade7 was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 1.5 KB
Line 
1                             BASH PATCH REPORT
2                             =================
3
4Bash-Release:   4.3
5Patch-ID:       bash43-004
6
7Bug-Reported-by:        Daan van Rossum <daan@flash.uchicago.edu>
8Bug-Reference-ID:       <20140307072523.GA14250@flash.uchicago.edu>
9Bug-Reference-URL:     
10
11Bug-Description:
12
13The `.' command in vi mode cannot undo multi-key commands beginning with
14`c', `d', and `y' (command plus motion specifier).
15
16Patch (apply with `patch -p0'):
17
18*** ../bash-4.3/lib/readline/readline.c 2013-10-28 14:58:06.000000000 -0400
19--- lib/readline/readline.c     2014-03-07 15:20:33.000000000 -0500
20***************
21*** 965,969 ****
22    if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap &&
23        key != ANYOTHERKEY &&
24!       rl_key_sequence_length == 1 &&  /* XXX */
25        _rl_vi_textmod_command (key))
26      _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign);
27--- 965,969 ----
28    if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap &&
29        key != ANYOTHERKEY &&
30!       _rl_dispatching_keymap == vi_movement_keymap &&
31        _rl_vi_textmod_command (key))
32      _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign);
33*** ../bash-4.3/patchlevel.h    2012-12-29 10:47:57.000000000 -0500
34--- patchlevel.h        2014-03-20 20:01:28.000000000 -0400
35***************
36*** 26,30 ****
37     looks for to find the patch level (for the sccs version string). */
38 
39! #define PATCHLEVEL 3
40 
41  #endif /* _PATCHLEVEL_H_ */
42--- 26,30 ----
43     looks for to find the patch level (for the sccs version string). */
44 
45! #define PATCHLEVEL 4
46 
47  #endif /* _PATCHLEVEL_H_ */
Note: See TracBrowser for help on using the repository browser.