source: npl/overig/readline/readline-6.3-patches/readline63-001 @ 128fde4

gcc484perl-5.22
Last change on this file since 128fde4 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.3 KB
RevLine 
[c5c522c]1                           READLINE PATCH REPORT
2                           =====================
3
4Readline-Release: 6.3
5Patch-ID: readline63-001
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*** ../readline-6.3/readline.c  2013-10-28 14:58:06.000000000 -0400
19--- 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*** ../readline-6.3/patchlevel  2013-11-15 08:11:11.000000000 -0500
34--- patchlevel  2014-03-21 08:28:40.000000000 -0400
35***************
36*** 1,3 ****
37  # Do not edit -- exists only for use by patch
38 
39! 5
40--- 1,3 ----
41  # Do not edit -- exists only for use by patch
42 
43! 1
Note: See TracBrowser for help on using the repository browser.